diff options
author | Andreas Gohr <andi@splitbrain.org> | 2020-08-12 17:39:37 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2020-08-12 17:39:37 +0200 |
commit | 3f874cb39717289bf80a160faf3083588c3d4311 (patch) | |
tree | 3708b8ffd950f2c2034f0ed105ecb4dde197588c /composer.json | |
parent | 24486f8c927a3ff9461f40012c32397e0040d044 (diff) | |
download | dokuwiki-3f874cb39717289bf80a160faf3083588c3d4311.tar.gz dokuwiki-3f874cb39717289bf80a160faf3083588c3d4311.zip |
increase minimum PHP version to 7.2
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/composer.json b/composer.json index fc8f8bb27..d4bb214f3 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "type": "project", "license": "GPL v2", "require": { - "php": ">=5.6", + "php": ">=7.2", "ext-json": "*", "splitbrain/php-archive": "~1.0", "phpseclib/phpseclib": "~2.0", @@ -19,10 +19,12 @@ }, "config": { "platform": { - "php": "5.6" + "php": "7.2" } }, "suggest": { + "ext-mbstring": "The mbstring extension is highly reccomended to speed up all UTF-8 handling", + "ext-intl": "The intl extension allows for better locale specific sorting", "squizlabs/php_codesniffer": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", "phpunit/phpunit": "Allows automated tests to be run without system-wide install (only version 4-7 are supported)." }, |