X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=composer.json;h=e8dc2eb13c919c96258876e0d255e8493a5bac04;hb=f24896b237e40718fb6eaa2869592eb0855a47fd;hp=2ded0920a87f046d59146be68e6eacb2041b59a7;hpb=47be06098396b5eef35234b88227d64ab81bd988;p=github%2Fshaarli%2FShaarli.git diff --git a/composer.json b/composer.json index 2ded0920..e8dc2eb1 100644 --- a/composer.json +++ b/composer.json @@ -1,15 +1,48 @@ { "name": "shaarli/shaarli", - "description": "The personal, minimalist, super-fast, no-database delicious clone", + "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" + "issues": "https://github.com/shaarli/Shaarli/issues", + "wiki": "https://shaarli.readthedocs.io" + }, + "keywords": ["bookmark", "link", "share", "web"], + "config": { + "platform": { + "php": "5.6.31" + } + }, + "require": { + "php": ">=5.6", + "ext-zlib": "*", + "shaarli/netscape-bookmark-parser": "^2.1", + "erusev/parsedown": "^1.6", + "slim/slim": "^3.0", + "arthurhoaro/web-thumbnailer": "^1.1", + "pubsubhubbub/publisher": "dev-master", + "gettext/gettext": "^4.4" }, - "require": {}, "require-dev": { - "phpmd/phpmd" : "@stable", - "phpunit/phpunit": "4.8.*", - "sebastian/phpcpd": "*", + "phpunit/phpcov": "*", + "phpunit/phpunit": "^5.0", "squizlabs/php_codesniffer": "2.*" + }, + "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\\Config\\": "application/config/", + "Shaarli\\Config\\Exception\\": "application/config/exception", + "Shaarli\\Exceptions\\": "application/exceptions", + "Shaarli\\Feed\\": "application/feed", + "Shaarli\\Http\\": "application/http", + "Shaarli\\Render\\": "application/render", + "Shaarli\\Security\\": "application/security" + } } }