mirror of
https://github.com/laravel/valet.git
synced 2026-02-06 00:40:06 +01:00
Update minimum PHP requirement to 5.6
... because it's not actually compatible with 5.5 anymore - Ref: https://github.com/laravel/valet/issues/279
This commit is contained in:
@@ -11,8 +11,8 @@
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if (version_compare(PHP_VERSION, '5.5.9', '<')) {
|
||||
echo "Valet requires PHP 5.5.9 or later.";
|
||||
if (version_compare(PHP_VERSION, '5.6.0', '<')) {
|
||||
echo "Valet requires PHP 5.6 or later.";
|
||||
|
||||
exit(1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user