Skip to content

Commit

Permalink
Merge pull request #22 from BRACKETS-by-TRIAD/feat/laravel-10
Browse files Browse the repository at this point in the history
Laravel 10 support with v2.2
  • Loading branch information
erikgreasy authored Oct 26, 2023
2 parents 9aa124a + e403dd7 commit 86ac68c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion craftable
Original file line number Diff line number Diff line change
Expand Up @@ -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());

Expand Down
6 changes: 3 additions & 3 deletions src/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -31,4 +31,4 @@ protected function runCommand($command)

return $process->run();
}
}
}

0 comments on commit 86ac68c

Please sign in to comment.