From ddb06c520eee3e47805017bf50e7e8bb47af9b32 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 6 Jun 2017 09:26:08 -0700 Subject: [PATCH 1/2] fixed CS --- README.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 8753e87e..08c94f26 100644 --- a/README.rst +++ b/README.rst @@ -16,9 +16,7 @@ repositories, outside of your Composer package repository. They must follow the ``vendor/package/version/`` directory structure, where ``version`` is the minimum version supported by the recipe. -The following example shows the real directory structure of some Symfony recipes: - -:: +The following example shows the real directory structure of some Symfony recipes:: symfony/ console/ From ce297904d482006326b9742d0742e7134bccdd8b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 12 Jun 2017 11:20:39 -0700 Subject: [PATCH 2/2] moved routing specific configuration to the symfony/routing recipe --- symfony/framework-bundle/3.3/etc/packages/framework.yaml | 2 -- .../3.3/etc/packages/dev/routing.yaml} | 0 symfony/routing/3.3/etc/packages/routing.yaml | 3 +++ symfony/{framework-bundle => routing}/3.3/etc/routing.yaml | 0 4 files changed, 3 insertions(+), 2 deletions(-) rename symfony/{framework-bundle/3.3/etc/packages/dev/framework.yaml => routing/3.3/etc/packages/dev/routing.yaml} (100%) create mode 100644 symfony/routing/3.3/etc/packages/routing.yaml rename symfony/{framework-bundle => routing}/3.3/etc/routing.yaml (100%) diff --git a/symfony/framework-bundle/3.3/etc/packages/framework.yaml b/symfony/framework-bundle/3.3/etc/packages/framework.yaml index da36e56c..05613d20 100644 --- a/symfony/framework-bundle/3.3/etc/packages/framework.yaml +++ b/symfony/framework-bundle/3.3/etc/packages/framework.yaml @@ -12,5 +12,3 @@ framework: #fragments: ~ php_errors: log: true - router: - strict_requirements: null diff --git a/symfony/framework-bundle/3.3/etc/packages/dev/framework.yaml b/symfony/routing/3.3/etc/packages/dev/routing.yaml similarity index 100% rename from symfony/framework-bundle/3.3/etc/packages/dev/framework.yaml rename to symfony/routing/3.3/etc/packages/dev/routing.yaml diff --git a/symfony/routing/3.3/etc/packages/routing.yaml b/symfony/routing/3.3/etc/packages/routing.yaml new file mode 100644 index 00000000..b3e6a0af --- /dev/null +++ b/symfony/routing/3.3/etc/packages/routing.yaml @@ -0,0 +1,3 @@ +framework: + router: + strict_requirements: null diff --git a/symfony/framework-bundle/3.3/etc/routing.yaml b/symfony/routing/3.3/etc/routing.yaml similarity index 100% rename from symfony/framework-bundle/3.3/etc/routing.yaml rename to symfony/routing/3.3/etc/routing.yaml