bf8bec322b
Create a new core plugin allowing to mark bookmarks to read them later. When enabled: * checkbox is displayed in editlink view for new bookmarks * a plugin setting is available to check it or not it by default * in bookmark list: * new global filter to display only bookmark flagged as read it later * for each bookmarks, new action icon to toggle read it later status * for each « readitlater » bookmark, red label « To Read » added, and red line on the right of the bookmark added (default template) Fixes #143 Signed-off-by: ArthurHoaro <arthur@hoa.ro>
82 lines
3.4 KiB
JSON
82 lines
3.4 KiB
JSON
{
|
|
"name": "shaarli/shaarli",
|
|
"description": "The personal, minimalist, super-fast, database-free bookmarking service",
|
|
"type": "project",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/shaarli/Shaarli",
|
|
"support": {
|
|
"issues": "https://github.com/shaarli/Shaarli/issues",
|
|
"wiki": "https://shaarli.readthedocs.io"
|
|
},
|
|
"keywords": ["bookmark", "link", "share", "web"],
|
|
"config": {
|
|
"sort-packages": true,
|
|
"platform": {
|
|
"php": "7.1.29"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=7.1",
|
|
"ext-json": "*",
|
|
"ext-zlib": "*",
|
|
"arthurhoaro/web-thumbnailer": "^2.0",
|
|
"erusev/parsedown": "^1.6",
|
|
"erusev/parsedown-extra": "^0.8.1",
|
|
"gettext/gettext": "^4.4",
|
|
"katzgrau/klogger": "^1.2",
|
|
"malkusch/lock": "^2.1",
|
|
"pubsubhubbub/publisher": "dev-master",
|
|
"shaarli/netscape-bookmark-parser": "^3.0",
|
|
"slim/slim": "^3.0"
|
|
},
|
|
"require-dev": {
|
|
"roave/security-advisories": "dev-master",
|
|
"squizlabs/php_codesniffer": "3.*",
|
|
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
|
|
},
|
|
"suggest": {
|
|
"ext-curl": "Allows fetching web pages and thumbnails in a more robust way",
|
|
"ext-gd": "Required for thumbnail generation",
|
|
"ext-gettext": "Enables faster translation system in gettext mode",
|
|
"ext-intl": "Provides localized text sorting",
|
|
"ext-mbstring": "Provides multibyte (Unicode) string support"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Shaarli\\": "application",
|
|
"Shaarli\\Api\\": "application/api/",
|
|
"Shaarli\\Api\\Controllers\\": "application/api/controllers",
|
|
"Shaarli\\Api\\Exceptions\\": "application/api/exceptions",
|
|
"Shaarli\\Bookmark\\": "application/bookmark",
|
|
"Shaarli\\Bookmark\\Exception\\": "application/bookmark/exception",
|
|
"Shaarli\\Config\\": "application/config/",
|
|
"Shaarli\\Config\\Exception\\": "application/config/exception",
|
|
"Shaarli\\Container\\": "application/container",
|
|
"Shaarli\\Exceptions\\": "application/exceptions",
|
|
"Shaarli\\Feed\\": "application/feed",
|
|
"Shaarli\\Formatter\\": "application/formatter",
|
|
"Shaarli\\Front\\": "application/front",
|
|
"Shaarli\\Front\\Controller\\Admin\\": "application/front/controller/admin",
|
|
"Shaarli\\Front\\Controller\\Visitor\\": "application/front/controller/visitor",
|
|
"Shaarli\\Front\\Exception\\": "application/front/exceptions",
|
|
"Shaarli\\Helper\\": "application/helper",
|
|
"Shaarli\\Http\\": "application/http",
|
|
"Shaarli\\Legacy\\": "application/legacy",
|
|
"Shaarli\\Netscape\\": "application/netscape",
|
|
"Shaarli\\Plugin\\": "application/plugin",
|
|
"Shaarli\\Plugin\\Exception\\": "application/plugin/exception",
|
|
"Shaarli\\Plugin\\Wallabag\\": "plugins/wallabag",
|
|
"Shaarli\\Plugin\\ReadItLater\\": "plugins/readitlater",
|
|
"Shaarli\\Render\\": "application/render",
|
|
"Shaarli\\Security\\": "application/security",
|
|
"Shaarli\\Updater\\": "application/updater",
|
|
"Shaarli\\Updater\\Exception\\": "application/updater/exception"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Shaarli\\Tests\\": "tests",
|
|
"Shaarli\\Tests\\Utils\\": "tests/utils"
|
|
}
|
|
}
|
|
}
|