More loader

This commit is contained in:
2024-07-20 14:04:08 +02:00
parent 0951285ff8
commit 7461a42586
10 changed files with 161 additions and 40 deletions
+2 -1
View File
@@ -7,5 +7,6 @@ $baseDir = dirname($vendorDir);
return array(
'Pecee\\' => array($vendorDir . '/pecee/simple-router/src/Pecee'),
'Api\\' => array($baseDir . '/Api'),
'Api\\' => array($baseDir . '/api'),
'Pages\\' => array($baseDir . '/pages'),
);
+18 -14
View File
@@ -6,29 +6,34 @@ namespace Composer\Autoload;
class ComposerStaticInitd067465d9a99de373ba3093d61eda1d8
{
public static $prefixLengthsPsr4 = array (
'P' =>
array (
public static $prefixLengthsPsr4 = array(
'P' =>
array(
'Pages\\' => 6,
'Pecee\\' => 6,
),
'A' =>
array (
'Api\\' => 4,
'A' =>
array(
'api\\' => 4,
),
);
public static $prefixDirsPsr4 = array (
'Pecee\\' =>
array (
public static $prefixDirsPsr4 = array(
'Pages\\' =>
array(
0 => __DIR__ . '/..' . '/pages',
),
'Pecee\\' =>
array(
0 => __DIR__ . '/..' . '/pecee/simple-router/src/Pecee',
),
'Api\\' =>
array (
0 => __DIR__ . '/../..' . '/Api',
'Api\\' =>
array(
0 => __DIR__ . '/../..' . '/api',
),
);
public static $classMap = array (
public static $classMap = array(
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
);
@@ -38,7 +43,6 @@ class ComposerStaticInitd067465d9a99de373ba3093d61eda1d8
$loader->prefixLengthsPsr4 = ComposerStaticInitd067465d9a99de373ba3093d61eda1d8::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInitd067465d9a99de373ba3093d61eda1d8::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInitd067465d9a99de373ba3093d61eda1d8::$classMap;
}, null, ClassLoader::class);
}
}