{ "locks": { "symfony/framework-bundle": { "version": "5.4", "recipe": { "repo": "5.4", "branch": "master", "version": "5.4", "ref": "3665220abb623938e26f4696573a6eda7100b910" } } }, "manifests": { "symfony/framework-bundle": { "repository": "github.com/symfony/recipes", "package": "symfony/framework-bundle", "version": "5.4", "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/" ], "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": "getProjectDir();\n\n $container->import($projectDir.'/config/{packages}/*.yaml');\n $container->import($projectDir.'/config/{packages}/'.$this->environment.'/*.yaml');\n\n if (is_file($projectDir.'/config/services.yaml')) {\n $container->import($projectDir.'/config/services.yaml');\n $container->import($projectDir.'/config/{services}_'.$this->environment.'.yaml');\n } else {\n $container->import($projectDir.'/config/{services}.php');\n }\n }\n\n protected function configureRoutes(RoutingConfigurator $routes): void\n {\n $projectDir = $this->getProjectDir();\n\n $routes->import($projectDir.'/config/{routes}/'.$this->environment.'/*.yaml');\n $routes->import($projectDir.'/config/{routes}/*.yaml');\n\n if (is_file($projectDir.'/config/routes.yaml')) {\n $routes->import($projectDir.'/config/routes.yaml');\n } else {\n $routes->import($projectDir.'/config/{routes}.php');\n }\n }\n}\n", "executable": false, "encoding": "" }, "config/routes/framework.yaml": { "contents": "when@dev:\n _errors:\n resource: '@FrameworkBundle/Resources/config/routing/errors.xml'\n prefix: /_error\n", "executable": false, "encoding": "" }, "config/preload.php": { "contents": "