From 06da6867432207f17092c53046ebc670613476bf Mon Sep 17 00:00:00 2001 From: Erik Masny Date: Thu, 26 Oct 2023 10:43:30 +0200 Subject: [PATCH 1/2] chore(deps): update packages versions to support Laravel 10 --- composer.json | 4 ++-- src/Command.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) 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/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 +} From e403dd7bea7987e364d6af4b360930e0485908c9 Mon Sep 17 00:00:00 2001 From: Erik Masny Date: Thu, 26 Oct 2023 10:44:10 +0200 Subject: [PATCH 2/2] chore: bump version of craftable-installer --- craftable | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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());