diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 33 |
1 files changed, 27 insertions, 6 deletions
diff --git a/composer.json b/composer.json index 0d4c623c..c23b8252 100644 --- a/composer.json +++ b/composer.json | |||
@@ -16,18 +16,27 @@ | |||
16 | }, | 16 | }, |
17 | "require": { | 17 | "require": { |
18 | "php": ">=5.6", | 18 | "php": ">=5.6", |
19 | "shaarli/netscape-bookmark-parser": "^2.0", | 19 | "ext-json": "*", |
20 | "ext-zlib": "*", | ||
21 | "shaarli/netscape-bookmark-parser": "^2.1", | ||
20 | "erusev/parsedown": "^1.6", | 22 | "erusev/parsedown": "^1.6", |
21 | "slim/slim": "^3.0", | 23 | "slim/slim": "^3.0", |
24 | "arthurhoaro/web-thumbnailer": "^1.1", | ||
22 | "pubsubhubbub/publisher": "dev-master", | 25 | "pubsubhubbub/publisher": "dev-master", |
23 | "gettext/gettext": "^4.4" | 26 | "gettext/gettext": "^4.4" |
24 | }, | 27 | }, |
25 | "require-dev": { | 28 | "require-dev": { |
26 | "phpmd/phpmd" : "@stable", | 29 | "roave/security-advisories": "dev-master", |
30 | "phpunit/phpcov": "*", | ||
27 | "phpunit/phpunit": "^5.0", | 31 | "phpunit/phpunit": "^5.0", |
28 | "sebastian/phpcpd": "*", | 32 | "squizlabs/php_codesniffer": "2.*" |
29 | "squizlabs/php_codesniffer": "2.*", | 33 | }, |
30 | "phpunit/phpcov": "*" | 34 | "suggest": { |
35 | "ext-curl": "Allows fetching web pages and thumbnails in a more robust way", | ||
36 | "ext-gd": "Required for thumbnail generation", | ||
37 | "ext-gettext": "Enables faster translation system in gettext mode", | ||
38 | "ext-intl": "Provides localized text sorting", | ||
39 | "ext-mbstring": "Provides multibyte (Unicode) string support" | ||
31 | }, | 40 | }, |
32 | "autoload": { | 41 | "autoload": { |
33 | "psr-4": { | 42 | "psr-4": { |
@@ -35,9 +44,21 @@ | |||
35 | "Shaarli\\Api\\": "application/api/", | 44 | "Shaarli\\Api\\": "application/api/", |
36 | "Shaarli\\Api\\Controllers\\": "application/api/controllers", | 45 | "Shaarli\\Api\\Controllers\\": "application/api/controllers", |
37 | "Shaarli\\Api\\Exceptions\\": "application/api/exceptions", | 46 | "Shaarli\\Api\\Exceptions\\": "application/api/exceptions", |
47 | "Shaarli\\Bookmark\\": "application/bookmark", | ||
48 | "Shaarli\\Bookmark\\Exception\\": "application/bookmark/exception", | ||
38 | "Shaarli\\Config\\": "application/config/", | 49 | "Shaarli\\Config\\": "application/config/", |
39 | "Shaarli\\Config\\Exception\\": "application/config/exception", | 50 | "Shaarli\\Config\\Exception\\": "application/config/exception", |
40 | "Shaarli\\Security\\": "application/security" | 51 | "Shaarli\\Exceptions\\": "application/exceptions", |
52 | "Shaarli\\Feed\\": "application/feed", | ||
53 | "Shaarli\\Http\\": "application/http", | ||
54 | "Shaarli\\Netscape\\": "application/netscape", | ||
55 | "Shaarli\\Plugin\\": "application/plugin", | ||
56 | "Shaarli\\Plugin\\Exception\\": "application/plugin/exception", | ||
57 | "Shaarli\\Plugin\\Wallabag\\": "plugins/wallabag", | ||
58 | "Shaarli\\Render\\": "application/render", | ||
59 | "Shaarli\\Security\\": "application/security", | ||
60 | "Shaarli\\Updater\\": "application/updater", | ||
61 | "Shaarli\\Updater\\Exception\\": "application/updater/exception" | ||
41 | } | 62 | } |
42 | } | 63 | } |
43 | } | 64 | } |