]> Raphaƫl G. Git Repositories - blog/blobdiff - bin/console
Update console and symfony recipes
[blog] / bin / console
index c933dc535d0d19032f851d0aad82ae768fba6968..d8d530e2c36a68f7916acdfa16c9afafcad06bf0 100755 (executable)
@@ -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".');
 }