1
0
mirror of https://github.com/dg/dibi.git synced 2025-02-22 09:53:11 +01:00

requires PHP 7.1

This commit is contained in:
David Grudl 2017-03-08 13:57:45 +01:00
parent db8346a124
commit e1598cc7da
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@
}
],
"require": {
"php": ">=5.4.4"
"php": ">=7.1"
},
"require-dev": {
"tracy/tracy": "~2.2",

View File

@ -6,8 +6,8 @@
*/
if (PHP_VERSION_ID < 50404) {
throw new Exception('Dibi requires PHP 5.4.4 or newer.');
if (PHP_VERSION_ID < 70100) {
throw new Exception('Dibi requires PHP 7.1 or newer.');
}