Skip to content

Commit

Permalink
Recipes symfony/console update
Browse files Browse the repository at this point in the history
  • Loading branch information
gerMdz committed May 25, 2024
1 parent da68b4f commit efea2a1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions bin/console
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
use App\Kernel;
use Symfony\Bundle\FrameworkBundle\Console\Application;

if (!is_dir(dirname(__DIR__).'/vendor')) {
throw new LogicException('Dependencies are missing. Try running "composer install".');
}

if (!is_file(dirname(__DIR__).'/vendor/autoload_runtime.php')) {
throw new LogicException('Symfony Runtime is missing. Try running "composer require symfony/runtime".');
}
Expand Down
4 changes: 2 additions & 2 deletions symfony.lock
Original file line number Diff line number Diff line change
Expand Up @@ -439,12 +439,12 @@
"version": "v4.4.10"
},
"symfony/console": {
"version": "5.4",
"version": "6.4",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
"version": "5.3",
"ref": "da0c8be8157600ad34f10ff0c9cc91232522e047"
"ref": "1781ff40d8a17d87cf53f8d4cf0c8346ed2bb461"
},
"files": [
"bin/console"
Expand Down

0 comments on commit efea2a1

Please sign in to comment.