Skip to content

Commit f3db3f3

Browse files
committed
Fix composer autoloader path
1 parent b1bf3fb commit f3db3f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/laravel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/usr/bin/env php
22
<?php
33

4-
if (file_exists(__DIR__.'/../../autoload.php')) {
5-
require __DIR__.'/../../autoload.php';
4+
if (file_exists(__DIR__.'/../../../autoload.php')) {
5+
require __DIR__.'/../../../autoload.php';
66
} else {
7-
require __DIR__.'/vendor/autoload.php';
7+
require __DIR__.'/../vendor/autoload.php';
88
}
99

1010
$app = new Symfony\Component\Console\Application('Laravel Installer', '3.0.0');

0 commit comments

Comments
 (0)