We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88999ac commit 9fd92daCopy full SHA for 9fd92da
symfony/console/5.3/bin/console
@@ -4,6 +4,10 @@
4
use App\Kernel;
5
use Symfony\Bundle\FrameworkBundle\Console\Application;
6
7
+if (!is_dir(dirname(__DIR__).'/vendor')) {
8
+ throw new LogicException('Dependencies are missing. Try running "composer install".');
9
+}
10
+
11
if (!is_file(dirname(__DIR__).'/vendor/autoload_runtime.php')) {
12
throw new LogicException('Symfony Runtime is missing. Try running "composer require symfony/runtime".');
13
}
0 commit comments