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.
2 parents 2a5ea4c + db5e5b6 commit 54c3868Copy full SHA for 54c3868
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