diff options
author | VirtualTam <virtualtam@flibidi.net> | 2018-12-04 23:49:29 +0100 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2019-01-13 00:04:42 +0100 |
commit | 1a55fc8d639200aed4c0d3b0291a5dfd265de600 (patch) | |
tree | fec4d2f43c5beca73bb28347f73da7f25cf4814c /composer.json | |
parent | 9585441734924cb8ece3924afa5fefb6aa2e2604 (diff) | |
download | Shaarli-1a55fc8d639200aed4c0d3b0291a5dfd265de600.tar.gz Shaarli-1a55fc8d639200aed4c0d3b0291a5dfd265de600.tar.zst Shaarli-1a55fc8d639200aed4c0d3b0291a5dfd265de600.zip |
composer: add and document optional PHP extensions
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/composer.json b/composer.json index 8a98cfb6..a52b5f78 100644 --- a/composer.json +++ b/composer.json | |||
@@ -16,6 +16,7 @@ | |||
16 | }, | 16 | }, |
17 | "require": { | 17 | "require": { |
18 | "php": ">=5.6", | 18 | "php": ">=5.6", |
19 | "ext-json": "*", | ||
19 | "ext-zlib": "*", | 20 | "ext-zlib": "*", |
20 | "shaarli/netscape-bookmark-parser": "^2.1", | 21 | "shaarli/netscape-bookmark-parser": "^2.1", |
21 | "erusev/parsedown": "^1.6", | 22 | "erusev/parsedown": "^1.6", |
@@ -30,7 +31,11 @@ | |||
30 | "squizlabs/php_codesniffer": "2.*" | 31 | "squizlabs/php_codesniffer": "2.*" |
31 | }, | 32 | }, |
32 | "suggest": { | 33 | "suggest": { |
33 | "ext-curl": "*" | 34 | "ext-curl": "Allows fetching web pages and thumbnails in a more robust way", |
35 | "ext-gd": "Required for thumbnail generation", | ||
36 | "ext-gettext": "Enables faster translation system in gettext mode", | ||
37 | "ext-intl": "Provides localized text sorting", | ||
38 | "ext-mbstring": "Provides multibyte (Unicode) string support" | ||
34 | }, | 39 | }, |
35 | "autoload": { | 40 | "autoload": { |
36 | "psr-4": { | 41 | "psr-4": { |