diff --git a/composer.json b/composer.json index 681192e..cb0fc16 100755 --- a/composer.json +++ b/composer.json @@ -20,8 +20,8 @@ }, "require": { "ext-zip": "*", - "symfony/console": "~3.0|~4.0|~5.0", - "symfony/process": "~3.0|~4.0|~5.0" + "symfony/console": "~3.0|~4.0|~5.0|~6.0", + "symfony/process": "~3.0|~4.0|~5.0|~6.0" }, "bin": [ "craftable" diff --git a/craftable b/craftable index 929738c..b1c7fdc 100755 --- a/craftable +++ b/craftable @@ -11,7 +11,7 @@ use Brackets\CraftableInstaller\Console\InstallCommand; use Brackets\CraftableInstaller\Console\NewCommand; use Symfony\Component\Console\Application; -$app = new Application('Craftable Installer', '2.1.0'); +$app = new Application('Craftable Installer', '2.2.0'); $app->add(new NewCommand()); $app->add(new InstallCommand()); diff --git a/src/Command.php b/src/Command.php index 0d4e4fa..10ad7f4 100644 --- a/src/Command.php +++ b/src/Command.php @@ -10,8 +10,8 @@ abstract class Command extends ParentCommand { - const LARAVEL_CURRENT_LATEST_VERSION = '9.*'; - const LARAVEL_CURRENT_LATEST_VERSION_DEV = '9.*'; + const LARAVEL_CURRENT_LATEST_VERSION = '10.*'; + const LARAVEL_CURRENT_LATEST_VERSION_DEV = '10.*'; protected $output; @@ -31,4 +31,4 @@ protected function runCommand($command) return $process->run(); } -} \ No newline at end of file +}