X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=composer.json;h=c23b8252a0411b396ceb8871f96f5eef6f2dd971;hb=8f4e9624e6b512b5377faa5504b9710809b59ce6;hp=4c14e79493dc5937ae2fc112a0733c7326f58984;hpb=92c6439dbc41d8a2873dfebbc44e30d75c0c473d;p=github%2Fshaarli%2FShaarli.git diff --git a/composer.json b/composer.json index 4c14e794..c23b8252 100644 --- a/composer.json +++ b/composer.json @@ -16,6 +16,7 @@ }, "require": { "php": ">=5.6", + "ext-json": "*", "ext-zlib": "*", "shaarli/netscape-bookmark-parser": "^2.1", "erusev/parsedown": "^1.6", @@ -25,12 +26,17 @@ "gettext/gettext": "^4.4" }, "require-dev": { + "roave/security-advisories": "dev-master", "phpunit/phpcov": "*", "phpunit/phpunit": "^5.0", "squizlabs/php_codesniffer": "2.*" }, "suggest": { - "ext-curl": "*" + "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": { @@ -45,8 +51,14 @@ "Shaarli\\Exceptions\\": "application/exceptions", "Shaarli\\Feed\\": "application/feed", "Shaarli\\Http\\": "application/http", + "Shaarli\\Netscape\\": "application/netscape", + "Shaarli\\Plugin\\": "application/plugin", + "Shaarli\\Plugin\\Exception\\": "application/plugin/exception", + "Shaarli\\Plugin\\Wallabag\\": "plugins/wallabag", "Shaarli\\Render\\": "application/render", - "Shaarli\\Security\\": "application/security" + "Shaarli\\Security\\": "application/security", + "Shaarli\\Updater\\": "application/updater", + "Shaarli\\Updater\\Exception\\": "application/updater/exception" } } }