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 733f2fc + 2054fab commit db5e5b6Copy full SHA for db5e5b6
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