{ "manifests": { "symfony/framework-bundle": { "manifest": { "bundles": { "Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle": [ "all" ] }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/", "public/": "%PUBLIC_DIR%/", "src/": "%SRC_DIR%/" }, "composer-scripts": { "cache:clear": "symfony-cmd", "assets:install %PUBLIC_DIR%": "symfony-cmd" }, "env": { "APP_ENV": "dev", "APP_SECRET": "%generate(secret)%", "#TRUSTED_PROXIES": "127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16", "#TRUSTED_HOSTS": "'^(localhost|example\\.com)$'" }, "gitignore": [ "/.env.local", "/.env.local.php", "/.env.*.local", "/%CONFIG_DIR%/secrets/prod/prod.decrypt.private.php", "/%PUBLIC_DIR%/bundles/", "/%VAR_DIR%/", "/vendor/" ], "post-install-output": [ " * Run your application:", " 1. Go to the project directory", " 2. Create your code repository with the git init command", " 3. Download the Symfony CLI at https://symfony.com/download to install a development web server", "", " * Read the documentation at https://symfony.com/doc" ] }, "files": { "public/index.php": { "contents": [ "bootEnv(dirname(__DIR__).'/.env');", "", "if ($_SERVER['APP_DEBUG']) {", " umask(0000);", "", " Debug::enable();", "}", "", "if ($trustedProxies = $_SERVER['TRUSTED_PROXIES'] ?? false) {", " Request::setTrustedProxies(explode(',', $trustedProxies), Request::HEADER_X_FORWARDED_FOR | Request::HEADER_X_FORWARDED_PORT | Request::HEADER_X_FORWARDED_PROTO);", "}", "", "if ($trustedHosts = $_SERVER['TRUSTED_HOSTS'] ?? false) {", " Request::setTrustedHosts([$trustedHosts]);", "}", "", "$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);", "$request = Request::createFromGlobals();", "$response = $kernel->handle($request);", "$response->send();", "$kernel->terminate($request, $response);", "" ], "executable": false }, "config/services.yaml": { "contents": [ "# This file is the entry point to configure your own services.", "# Files in the packages/ subdirectory configure your dependencies.", "", "# Put parameters here that don't need to change on each machine where the app is deployed", "# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration", "parameters:", "", "services:", " # default configuration for services in *this* file", " _defaults:", " autowire: true # Automatically injects dependencies in your services.", " autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.", "", " # makes classes in src/ available to be used as services", " # this creates a service per class whose id is the fully-qualified class name", " App\\:", " resource: '../src/'", " exclude:", " - '../src/DependencyInjection/'", " - '../src/Entity/'", " - '../src/Kernel.php'", " - '../src/Tests/'", "", " # controllers are imported separately to make sure services can be injected", " # as action arguments even if you don't extend any base controller class", " App\\Controller\\:", " resource: '../src/Controller/'", " tags: ['controller.service_arguments']", "", " # add more service definitions when explicit configuration is needed", " # please note that last definitions always *replace* previous ones", "" ], "executable": false }, "config/routes/dev/framework.yaml": { "contents": [ "_errors:", " resource: '@FrameworkBundle/Resources/config/routing/errors.xml'", " prefix: /_error", "" ], "executable": false }, "config/preload.php": { "contents": [ "import('../config/{packages}/*.yaml');", " $container->import('../config/{packages}/'.$this->environment.'/*.yaml');", "", " if (is_file(\\dirname(__DIR__).'/config/services.yaml')) {", " $container->import('../config/services.yaml');", " $container->import('../config/{services}_'.$this->environment.'.yaml');", " } elseif (is_file($path = \\dirname(__DIR__).'/config/services.php')) {", " (require $path)($container->withPath($path), $this);", " }", " }", "", " protected function configureRoutes(RoutingConfigurator $routes): void", " {", " $routes->import('../config/{routes}/'.$this->environment.'/*.yaml');", " $routes->import('../config/{routes}/*.yaml');", "", " if (is_file(\\dirname(__DIR__).'/config/routes.yaml')) {", " $routes->import('../config/routes.yaml');", " } elseif (is_file($path = \\dirname(__DIR__).'/config/routes.php')) {", " (require $path)($routes->withPath($path), $this);", " }", " }", "}", "" ], "executable": false }, "src/Controller/.gitignore": { "contents": [ "" ], "executable": false } }, "ref": "02f54ab08d007f94c4655cd68526500cb8f17451" } } }