diff --git a/composer.json b/composer.json index 8706c825..97b4144b 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "require": { - "php": "^7.2.9", + "php": "^7.3", "symfony/console": "^4.0|^5.0", "symfony/process": "^4.2|^5.0" }, diff --git a/src/NewCommand.php b/src/NewCommand.php index 3896c845..dbc7de65 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -69,10 +69,6 @@ protected function execute(InputInterface $input, OutputInterface $output) sleep(1); - if (version_compare(PHP_VERSION, '7.3.0', '<')) { - throw new RuntimeException('The Laravel installer requires PHP 7.3.0 or greater. Please use "composer create-project laravel/laravel" instead.'); - } - $name = $input->getArgument('name'); $directory = $name && $name !== '.' ? getcwd().'/'.$name : '.';