{ "locks": { "symfony/framework-bundle": { "version": "5.2", "recipe": { "repo": "5.2", "branch": "master", "version": "5.2", "ref": "7eb218d19263e5e4a0f9d1d1502d8656098ec857" } } }, "manifests": { "symfony/framework-bundle": { "repository": "github.com/symfony/recipes", "package": "symfony/framework-bundle", "version": "5.2", "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)%" }, "gitignore": [ "/.env.local", "/.env.local.php", "/.env.*.local", "/%CONFIG_DIR%/secrets/prod/prod.decrypt.private.php", "/%PUBLIC_DIR%/bundles/", "/%VAR_DIR%/", "/vendor/" ] }, "files": { "public/index.php": { "contents": "bootEnv(dirname(__DIR__).'/.env');\n\nif ($_SERVER['APP_DEBUG']) {\n umask(0000);\n\n Debug::enable();\n}\n\n$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);\n$request = Request::createFromGlobals();\n$response = $kernel->handle($request);\n$response->send();\n$kernel->terminate($request, $response);\n", "executable": false, "encoding": "" }, "src/Controller/.gitignore": { "contents": "", "executable": false, "encoding": "" }, "src/Kernel.php": { "contents": "import('../config/{packages}/*.yaml');\n $container->import('../config/{packages}/'.$this->environment.'/*.yaml');\n\n if (is_file(\\dirname(__DIR__).'/config/services.yaml')) {\n $container->import('../config/services.yaml');\n $container->import('../config/{services}_'.$this->environment.'.yaml');\n } elseif (is_file($path = \\dirname(__DIR__).'/config/services.php')) {\n (require $path)($container->withPath($path), $this);\n }\n }\n\n protected function configureRoutes(RoutingConfigurator $routes): void\n {\n $routes->import('../config/{routes}/'.$this->environment.'/*.yaml');\n $routes->import('../config/{routes}/*.yaml');\n\n if (is_file(\\dirname(__DIR__).'/config/routes.yaml')) {\n $routes->import('../config/routes.yaml');\n } elseif (is_file($path = \\dirname(__DIR__).'/config/routes.php')) {\n (require $path)($routes->withPath($path), $this);\n }\n }\n}\n", "executable": false, "encoding": "" }, "config/routes/dev/framework.yaml": { "contents": "_errors:\n resource: '@FrameworkBundle/Resources/config/routing/errors.xml'\n prefix: /_error\n", "executable": false, "encoding": "" }, "config/preload.php": { "contents": "