X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=composer.json;h=a52b5f78ed24817e873ffba40d4693ad631f8da2;hb=dea72c711ff740b3b829d238fcf85648465143a0;hp=f6d92c929494c5ae50ca3a6f2dd050e2ffdfb399;hpb=4a5827ff5adadcd8c1ef9231e485f77c0c376c03;p=github%2Fshaarli%2FShaarli.git diff --git a/composer.json b/composer.json index f6d92c92..a52b5f78 100644 --- a/composer.json +++ b/composer.json @@ -1,15 +1,63 @@ { "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-json": "*", + "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.6.*", - "sebastian/phpcpd": "*", + "phpunit/phpcov": "*", + "phpunit/phpunit": "^5.0", "squizlabs/php_codesniffer": "2.*" + }, + "suggest": { + "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": { + "Shaarli\\": "application", + "Shaarli\\Api\\": "application/api/", + "Shaarli\\Api\\Controllers\\": "application/api/controllers", + "Shaarli\\Api\\Exceptions\\": "application/api/exceptions", + "Shaarli\\Bookmark\\": "application/bookmark", + "Shaarli\\Bookmark\\Exception\\": "application/bookmark/exception", + "Shaarli\\Config\\": "application/config/", + "Shaarli\\Config\\Exception\\": "application/config/exception", + "Shaarli\\Exceptions\\": "application/exceptions", + "Shaarli\\Feed\\": "application/feed", + "Shaarli\\Http\\": "application/http", + "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", + "Shaarli\\Updater\\Exception\\": "application/updater/exception" + } } }