Compare commits
No commits in common. "d2d9db32f506574334887c5a49eb5c7f2408a79b" and "1370c7c6f6d8372782bde29ed2b2196e82597e48" have entirely different histories.
d2d9db32f5
...
1370c7c6f6
3
.gitignore
vendored
3
.gitignore
vendored
@ -161,6 +161,7 @@ fabric.properties
|
|||||||
/bin/*
|
/bin/*
|
||||||
!bin/console
|
!bin/console
|
||||||
!bin/symfony_requirements
|
!bin/symfony_requirements
|
||||||
|
/vendor/
|
||||||
|
|
||||||
# Assets and user uploads
|
# Assets and user uploads
|
||||||
/web/bundles/
|
/web/bundles/
|
||||||
@ -187,5 +188,3 @@ fabric.properties
|
|||||||
/web/js/
|
/web/js/
|
||||||
|
|
||||||
# End of https://www.toptal.com/developers/gitignore/api/symfony,phpstorm,git
|
# End of https://www.toptal.com/developers/gitignore/api/symfony,phpstorm,git
|
||||||
/.idea
|
|
||||||
/vendor/
|
|
25
vendor/autoload.php
vendored
Normal file
25
vendor/autoload.php
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// autoload.php @generated by Composer
|
||||||
|
|
||||||
|
if (PHP_VERSION_ID < 50600) {
|
||||||
|
if (!headers_sent()) {
|
||||||
|
header('HTTP/1.1 500 Internal Server Error');
|
||||||
|
}
|
||||||
|
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
|
||||||
|
if (!ini_get('display_errors')) {
|
||||||
|
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
|
||||||
|
fwrite(STDERR, $err);
|
||||||
|
} elseif (!headers_sent()) {
|
||||||
|
echo $err;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
trigger_error(
|
||||||
|
$err,
|
||||||
|
E_USER_ERROR
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
require_once __DIR__ . '/composer/autoload_real.php';
|
||||||
|
|
||||||
|
return ComposerAutoloaderInit0cc412674760ac32bd8551de9f3bebb9::getLoader();
|
30
vendor/autoload_runtime.php
vendored
Normal file
30
vendor/autoload_runtime.php
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// autoload_runtime.php @generated by Symfony Runtime
|
||||||
|
|
||||||
|
if (true === (require_once __DIR__.'/autoload.php') || empty($_SERVER['SCRIPT_FILENAME'])) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$app = require $_SERVER['SCRIPT_FILENAME'];
|
||||||
|
|
||||||
|
if (!is_object($app)) {
|
||||||
|
throw new TypeError(sprintf('Invalid return value: callable object expected, "%s" returned from "%s".', get_debug_type($app), $_SERVER['SCRIPT_FILENAME']));
|
||||||
|
}
|
||||||
|
|
||||||
|
$runtime = $_SERVER['APP_RUNTIME'] ?? $_ENV['APP_RUNTIME'] ?? 'Symfony\\Component\\Runtime\\SymfonyRuntime';
|
||||||
|
$runtime = new $runtime(($_SERVER['APP_RUNTIME_OPTIONS'] ?? $_ENV['APP_RUNTIME_OPTIONS'] ?? []) + [
|
||||||
|
'project_dir' => dirname(__DIR__, 1),
|
||||||
|
]);
|
||||||
|
|
||||||
|
[$app, $args] = $runtime
|
||||||
|
->getResolver($app)
|
||||||
|
->resolve();
|
||||||
|
|
||||||
|
$app = $app(...$args);
|
||||||
|
|
||||||
|
exit(
|
||||||
|
$runtime
|
||||||
|
->getRunner($app)
|
||||||
|
->run()
|
||||||
|
);
|
Loading…
Reference in New Issue
Block a user