mirror of
https://github.com/friendica/friendica
synced 2025-04-25 03:10:11 +00:00
Composer: Add vendor directry
- Add gitignore to avoid committing libraries' .git folder
This commit is contained in:
parent
8c49a7b68f
commit
cae0543629
10 changed files with 598 additions and 0 deletions
38
vendor/composer/autoload_static.php
vendored
Normal file
38
vendor/composer/autoload_static.php
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
<?php
|
||||
|
||||
// autoload_static.php @generated by Composer
|
||||
|
||||
namespace Composer\Autoload;
|
||||
|
||||
class ComposerStaticInitFriendica
|
||||
{
|
||||
public static $prefixLengthsPsr4 = array (
|
||||
'F' =>
|
||||
array (
|
||||
'Friendica\\' => 10,
|
||||
),
|
||||
);
|
||||
|
||||
public static $prefixDirsPsr4 = array (
|
||||
'Friendica\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/../..' . '/include',
|
||||
),
|
||||
);
|
||||
|
||||
public static $classMap = array (
|
||||
'Friendica\\Core\\Config' => __DIR__ . '/../..' . '/include/Core/Config.php',
|
||||
'Friendica\\Core\\PConfig' => __DIR__ . '/../..' . '/include/Core/PConfig.php',
|
||||
'Friendica\\ParseUrl' => __DIR__ . '/../..' . '/include/ParseUrl.php',
|
||||
);
|
||||
|
||||
public static function getInitializer(ClassLoader $loader)
|
||||
{
|
||||
return \Closure::bind(function () use ($loader) {
|
||||
$loader->prefixLengthsPsr4 = ComposerStaticInitFriendica::$prefixLengthsPsr4;
|
||||
$loader->prefixDirsPsr4 = ComposerStaticInitFriendica::$prefixDirsPsr4;
|
||||
$loader->classMap = ComposerStaticInitFriendica::$classMap;
|
||||
|
||||
}, null, ClassLoader::class);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue