Skip to content

Commit 0758882

Browse files
committed
Fix PSR-4 autoloading
1 parent 74bf789 commit 0758882

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/autoload.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
return;
1010
}
1111

12-
if (!file_exists("{$base}/composer/autoload_psr4.php")) {
12+
if (!file_exists("{$base}/vendor/composer/autoload_psr4.php")) {
1313
return;
1414
}
1515

16-
$definitions = require "{$base}/composer/autoload_psr4.php";
16+
$definitions = require "{$base}/vendor/composer/autoload_psr4.php";
1717

1818
foreach ($definitions as $prefix => $paths) {
1919
$prefixLength = strlen($prefix);

0 commit comments

Comments
 (0)