X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=composer.json;h=99ef0b5e6da82c9799f4ac583e5bd750a274b89a;hb=bede8e1b633d720d6a7d1b05ba367811f3ac2b87;hp=f6d92c929494c5ae50ca3a6f2dd050e2ffdfb399;hpb=38a0c256d200df872990f6ed450aceaf215eeafd;p=github%2Fshaarli%2FShaarli.git diff --git a/composer.json b/composer.json index f6d92c92..99ef0b5e 100644 --- a/composer.json +++ b/composer.json @@ -1,15 +1,44 @@ { "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", + "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": {}, "require-dev": { "phpmd/phpmd" : "@stable", - "phpunit/phpunit": "4.6.*", + "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" + } } }