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 253d8ae commit c9ea063Copy full SHA for c9ea063
bin/bootstrap.php
@@ -37,7 +37,9 @@
37
|
38
*/
39
40
-if (! is_file($autoload_file = $basePath.'/vendor/autoload.php')) {
+$vendorDir = $_ENV['COMPOSER_VENDOR_DIR'] ?: "{$basePath}/vendor";
41
+
42
+if (! is_file($autoload_file = "{$vendorDir}/autoload.php")) {
43
Octane::writeError("Composer autoload file was not found. Did you install the project's dependencies?");
44
45
exit(10);
0 commit comments