X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=composer.json;h=8a3d1636e3b1cd9581ad177f92f3227a2d475642;hb=00af48d9d20af1ce51c8ad42fe354fafc9ceb8a3;hp=57851e53e27fbab99fa5044de0d0bf0c389a30a6;hpb=9c5daad19c850d852f2e78ca571ad199362c0ffe;p=github%2Fshaarli%2FShaarli.git diff --git a/composer.json b/composer.json index 57851e53..8a3d1636 100644 --- a/composer.json +++ b/composer.json @@ -6,22 +6,27 @@ "homepage": "https://github.com/shaarli/Shaarli", "support": { "issues": "https://github.com/shaarli/Shaarli/issues", - "wiki": "https://github.com/shaarli/Shaarli/wiki" + "wiki": "https://shaarli.readthedocs.io" }, "keywords": ["bookmark", "link", "share", "web"], + "config": { + "platform": { + "php": "5.6.31" + } + }, "require": { - "php": ">=5.5", - "shaarli/netscape-bookmark-parser": "1.*", - "erusev/parsedown": "1.6", + "php": ">=5.6", + "shaarli/netscape-bookmark-parser": "^2.1", + "erusev/parsedown": "^1.6", "slim/slim": "^3.0", - "pubsubhubbub/publisher": "dev-master" + "arthurhoaro/web-thumbnailer": "^1.1", + "pubsubhubbub/publisher": "dev-master", + "gettext/gettext": "^4.4" }, "require-dev": { - "phpmd/phpmd" : "@stable", - "phpunit/phpunit": "4.8.*", - "sebastian/phpcpd": "*", - "squizlabs/php_codesniffer": "2.*", - "phpunit/phpcov": "*" + "phpunit/phpcov": "*", + "phpunit/phpunit": "^5.0", + "squizlabs/php_codesniffer": "2.*" }, "autoload": { "psr-4": { @@ -30,7 +35,11 @@ "Shaarli\\Api\\Controllers\\": "application/api/controllers", "Shaarli\\Api\\Exceptions\\": "application/api/exceptions", "Shaarli\\Config\\": "application/config/", - "Shaarli\\Config\\Exception\\": "application/config/exception" + "Shaarli\\Config\\Exception\\": "application/config/exception", + "Shaarli\\Exceptions\\": "application/exceptions", + "Shaarli\\Feed\\": "application/feed", + "Shaarli\\Http\\": "application/http", + "Shaarli\\Security\\": "application/security" } } }