Change minimum requirement to PHP 7.4
- PHP versions < 7.4 are EOL: https://www.php.net/supported-versions.php - Libraries used by Kanboard have dropped support for older versions of PHP
This commit is contained in:
committed by
Frédéric Guillot
parent
0287140034
commit
69c51fdf50
@@ -13,51 +13,53 @@
|
||||
"optimize-autoloader": true,
|
||||
"discard-changes": true
|
||||
},
|
||||
"require" : {
|
||||
"php" : ">=7.2.0",
|
||||
"ext-simplexml" : "*",
|
||||
"ext-dom" : "*",
|
||||
"ext-xml" : "*",
|
||||
"ext-gd" : "*",
|
||||
"ext-mbstring" : "*",
|
||||
"ext-hash" : "*",
|
||||
"ext-openssl" : "*",
|
||||
"ext-json" : "*",
|
||||
"ext-ctype" : "*",
|
||||
"ext-filter" : "*",
|
||||
"ext-session" : "*",
|
||||
"christian-riesen/otp" : "1.4.3",
|
||||
"erusev/parsedown" : "1.7.4",
|
||||
"pimple/pimple" : "3.5.0",
|
||||
"require": {
|
||||
"php": ">=7.4.0",
|
||||
"ext-simplexml": "*",
|
||||
"ext-dom": "*",
|
||||
"ext-xml": "*",
|
||||
"ext-gd": "*",
|
||||
"ext-mbstring": "*",
|
||||
"ext-hash": "*",
|
||||
"ext-openssl": "*",
|
||||
"ext-json": "*",
|
||||
"ext-ctype": "*",
|
||||
"ext-filter": "*",
|
||||
"ext-session": "*",
|
||||
"christian-riesen/otp": "1.4.3",
|
||||
"erusev/parsedown": "1.7.4",
|
||||
"pimple/pimple": "3.5.0",
|
||||
"psr/log": "1.1.4",
|
||||
"symfony/console" : "4.4.37",
|
||||
"symfony/event-dispatcher" : "4.4.37",
|
||||
"symfony/console": "4.4.37",
|
||||
"symfony/event-dispatcher": "4.4.37",
|
||||
"symfony/finder": "5.4.3"
|
||||
},
|
||||
"autoload" : {
|
||||
"classmap" : ["app/"],
|
||||
"psr-4" : {
|
||||
"Kanboard\\" : "app/",
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
"app/"
|
||||
],
|
||||
"psr-4": {
|
||||
"Kanboard\\": "app/",
|
||||
"MatthiasMullie\\Minify\\": "libs/minify/src/",
|
||||
"MatthiasMullie\\PathConverter\\": "libs/path-converter/src/",
|
||||
"Gregwar\\": "libs",
|
||||
"Eluceo\\iCal\\": "libs/ical"
|
||||
},
|
||||
"psr-0" : {
|
||||
"psr-0": {
|
||||
"JsonRPC": "libs/jsonrpc/src",
|
||||
"PHPQRCode": "libs/phpqrcode/lib",
|
||||
"PicoDb": "libs/picodb/lib",
|
||||
"SimpleQueue": "libs",
|
||||
"SimpleValidator": "libs"
|
||||
},
|
||||
"files" : [
|
||||
"files": [
|
||||
"app/functions.php",
|
||||
"libs/swiftmailer/swift_required.php"
|
||||
]
|
||||
},
|
||||
"require-dev" : {
|
||||
"symfony/stopwatch" : "5.4.3",
|
||||
"phpunit/phpunit" : "9.5.13",
|
||||
"require-dev": {
|
||||
"symfony/stopwatch": "5.4.3",
|
||||
"phpunit/phpunit": "9.5.13",
|
||||
"roave/security-advisories": "dev-master"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user