관리-도구
편집 파일: autoload.php.tar
home/tattooscyy/test/bootstrap/autoload.php 0000604 00000001057 15224641364 0015241 0 ustar 00 <?php define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | Register The Composer Auto Loader |-------------------------------------------------------------------------- | | Composer provides a convenient, automatically generated class loader | for our application. We just need to utilize it! We'll require it | into the script here so we do not have to manually load any of | our application's PHP classes. It just feels great to relax. | */ require __DIR__.'/../vendor/autoload.php'; home/tattooscyy/www/vendor/autoload.php 0000604 00000000262 15224653275 0014367 0 ustar 00 <?php // autoload.php @generated by Composer require_once __DIR__ . '/composer/autoload_real.php'; return ComposerAutoloaderInitbdd0683857d50d1fe451899c20863017::getLoader(); home/tattooscyy/api2/vendor/autoload.php 0000604 00000000262 15224653461 0014373 0 ustar 00 <?php // autoload.php @generated by Composer require_once __DIR__ . '/composer/autoload_real.php'; return ComposerAutoloaderInit1d461adbe686cfc31f070054eb47f550::getLoader(); home/tattooscyy/www/bootstrap/autoload.php 0000644 00000001057 15224674152 0015113 0 ustar 00 <?php define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | Register The Composer Auto Loader |-------------------------------------------------------------------------- | | Composer provides a convenient, automatically generated class loader | for our application. We just need to utilize it! We'll require it | into the script here so we do not have to manually load any of | our application's PHP classes. It just feels great to relax. | */ require __DIR__.'/../vendor/autoload.php'; home/tattooscyy/api/vendor/autoload.php 0000604 00000000262 15224726132 0014305 0 ustar 00 <?php // autoload.php @generated by Composer require_once __DIR__ . '/composer/autoload_real.php'; return ComposerAutoloaderInit7ca6198ec102cd42dff73dd478378b95::getLoader(); home/tattooscyy/test/vendor/autoload.php 0000777 00000000262 15224744721 0014532 0 ustar 00 <?php // autoload.php @generated by Composer require_once __DIR__ . '/composer/autoload_real.php'; return ComposerAutoloaderInitbdd0683857d50d1fe451899c20863017::getLoader(); home/tattooscyy/www/vendor/fzaninotto/faker/src/autoload.php 0000604 00000001556 15224757066 0020453 0 ustar 00 <?php /** * Simple autoloader that follow the PHP Standards Recommendation #0 (PSR-0) * @see https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md for more informations. * * Code inspired from the SplClassLoader RFC * @see https://wiki.php.net/rfc/splclassloader#example_implementation */ spl_autoload_register(function ($className) { $className = ltrim($className, '\\'); $fileName = ''; if ($lastNsPos = strripos($className, '\\')) { $namespace = substr($className, 0, $lastNsPos); $className = substr($className, $lastNsPos + 1); $fileName = str_replace('\\', DIRECTORY_SEPARATOR, $namespace) . DIRECTORY_SEPARATOR; } $fileName = __DIR__ . DIRECTORY_SEPARATOR . $fileName . $className . '.php'; if (file_exists($fileName)) { require $fileName; return true; } return false; });