X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=composer.json;h=99ef0b5e6da82c9799f4ac583e5bd750a274b89a;hb=f9bc4f9e7948d32be9a348a8a33eaf1d3d71ea10;hp=89a7e446f5186ef165ff52548dccf764fd7d9b7e;hpb=03542572665bae57705a2f57b0737ed43f4f1415;p=github%2Fshaarli%2FShaarli.git diff --git a/composer.json b/composer.json index 89a7e446..99ef0b5e 100644 --- a/composer.json +++ b/composer.json @@ -6,17 +6,39 @@ "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.3.4", - "shaarli/netscape-bookmark-parser": "1.*" + "php": ">=5.6", + "shaarli/netscape-bookmark-parser": "^2.0", + "erusev/parsedown": "^1.6", + "slim/slim": "^3.0", + "arthurhoaro/web-thumbnailer": "^1.1", + "pubsubhubbub/publisher": "dev-master", + "gettext/gettext": "^4.4" }, "require-dev": { "phpmd/phpmd" : "@stable", - "phpunit/phpunit": "4.8.*", + "phpunit/phpunit": "^5.0", "sebastian/phpcpd": "*", - "squizlabs/php_codesniffer": "2.*" + "squizlabs/php_codesniffer": "2.*", + "phpunit/phpcov": "*" + }, + "autoload": { + "psr-4": { + "Shaarli\\": "application", + "Shaarli\\Api\\": "application/api/", + "Shaarli\\Api\\Controllers\\": "application/api/controllers", + "Shaarli\\Api\\Exceptions\\": "application/api/exceptions", + "Shaarli\\Config\\": "application/config/", + "Shaarli\\Config\\Exception\\": "application/config/exception", + "Shaarli\\Security\\": "application/security" + } } }