1
0
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:
Chris Brown
2016-12-27 15:58:16 -05:00
parent 42e5fc325b
commit e208ca2340
5 changed files with 6 additions and 14 deletions

View File

@@ -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);
}