diff --git a/symfony/routing/6.0/config/packages/routing.yaml b/symfony/routing/6.0/config/packages/routing.yaml new file mode 100644 index 000000000..4b766ce57 --- /dev/null +++ b/symfony/routing/6.0/config/packages/routing.yaml @@ -0,0 +1,12 @@ +framework: + router: + utf8: true + + # Configure how to generate URLs in non-HTTP contexts, such as CLI commands. + # See https://symfony.com/doc/current/routing.html#generating-urls-in-commands + #default_uri: http://localhost + +when@prod: + framework: + router: + strict_requirements: null diff --git a/symfony/routing/6.0/config/routes.yaml b/symfony/routing/6.0/config/routes.yaml new file mode 100644 index 000000000..5b102f60e --- /dev/null +++ b/symfony/routing/6.0/config/routes.yaml @@ -0,0 +1,7 @@ +controllers: + resource: ../src/Controller/ + type: annotation + +kernel: + resource: ../src/Kernel.php + type: annotation diff --git a/symfony/routing/6.0/manifest.json b/symfony/routing/6.0/manifest.json new file mode 100644 index 000000000..c0c66b64e --- /dev/null +++ b/symfony/routing/6.0/manifest.json @@ -0,0 +1,6 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "aliases": ["router"] +}