X-Git-Url: https://git.immae.eu/?p=github%2Fshaarli%2FShaarli.git;a=blobdiff_plain;f=composer.json;h=c23b8252a0411b396ceb8871f96f5eef6f2dd971;hp=a2df466a54fe0ab3abe6c2facd51ff02a5cae073;hb=HEAD;hpb=e1850388348d4bfdf463a5aa341bc470da79cf32 diff --git a/composer.json b/composer.json index a2df466a..138319ca 100644 --- a/composer.json +++ b/composer.json @@ -10,27 +10,36 @@ }, "keywords": ["bookmark", "link", "share", "web"], "config": { + "sort-packages": true, "platform": { - "php": "5.6.31" + "php": "7.1.29" } }, "require": { - "php": ">=5.6", + "php": ">=7.1", + "ext-json": "*", "ext-zlib": "*", - "shaarli/netscape-bookmark-parser": "^2.1", + "arthurhoaro/web-thumbnailer": "^2.0", "erusev/parsedown": "^1.6", - "slim/slim": "^3.0", - "arthurhoaro/web-thumbnailer": "^1.1", + "erusev/parsedown-extra": "^0.8.1", + "gettext/gettext": "^4.4", + "katzgrau/klogger": "^1.2", + "malkusch/lock": "^2.1", "pubsubhubbub/publisher": "dev-master", - "gettext/gettext": "^4.4" + "shaarli/netscape-bookmark-parser": "^3.0", + "slim/slim": "^3.0" }, "require-dev": { - "phpunit/phpcov": "*", - "phpunit/phpunit": "^5.0", - "squizlabs/php_codesniffer": "2.*" + "roave/security-advisories": "dev-master", + "squizlabs/php_codesniffer": "3.*", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" }, "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": { @@ -42,12 +51,21 @@ "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\\Render\\": "application/render", "Shaarli\\Security\\": "application/security", "Shaarli\\Updater\\": "application/updater",