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 eb27ac2 commit 2054fabCopy full SHA for 2054fab
app/autoload.php
@@ -28,6 +28,9 @@
28
/* 'composer install' validation */
29
if (file_exists($vendorAutoload)) {
30
$composerAutoloader = include $vendorAutoload;
31
+} else if (file_exists("{$vendorDir}/autoload.php")) {
32
+ $vendorAutoload = "{$vendorDir}/autoload.php";
33
+ $composerAutoloader = include $vendorAutoload;
34
} else {
35
throw new \Exception(
36
'Vendor autoload is not found. Please run \'composer install\' under application root directory.'
0 commit comments