mirror of
https://github.com/laravel/valet.git
synced 2026-02-04 08:10:07 +01:00
Support PHP 7.3
This commit is contained in:
committed by
Matt Stauffer
parent
b05c773e1d
commit
b3ce1c4a15
@@ -7,8 +7,21 @@
|
||||
|
||||
class Brew
|
||||
{
|
||||
const SUPPORTED_PHP_VERSIONS = ['php', 'php@7.2', 'php@7.1', 'php@7.0', 'php@5.6', 'php72', 'php71', 'php70', 'php56'];
|
||||
const LATEST_PHP_VERSION = 'php@7.2';
|
||||
const SUPPORTED_PHP_VERSIONS = [
|
||||
'php',
|
||||
'php@7.3',
|
||||
'php@7.2',
|
||||
'php@7.1',
|
||||
'php@7.0',
|
||||
'php@5.6',
|
||||
'php73',
|
||||
'php72',
|
||||
'php71',
|
||||
'php70',
|
||||
'php56'
|
||||
];
|
||||
|
||||
const LATEST_PHP_VERSION = 'php@7.3';
|
||||
|
||||
var $cli, $files;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user