From 91ebb0fa08aab4309da3682177695bb1f59f0b2a Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Mon, 24 Feb 2020 13:08:58 -0500 Subject: [PATCH] removing services_test.yaml from symfony/phpunit-bridge recipe Since Symfony 4.1, you can fetch private services from a test using a special method - creating public aliases is not required anymore. --- symfony/phpunit-bridge/3.3/config/services_test.yaml | 9 --------- symfony/phpunit-bridge/3.3/manifest.json | 1 - 2 files changed, 10 deletions(-) delete mode 100644 symfony/phpunit-bridge/3.3/config/services_test.yaml diff --git a/symfony/phpunit-bridge/3.3/config/services_test.yaml b/symfony/phpunit-bridge/3.3/config/services_test.yaml deleted file mode 100644 index 876c36bd..00000000 --- a/symfony/phpunit-bridge/3.3/config/services_test.yaml +++ /dev/null @@ -1,9 +0,0 @@ -services: - _defaults: - public: true - - # If you need to access services in a test, create an alias - # and then fetch that alias from the container. As a convention, - # aliases are prefixed with test. For example: - # - # test.App\Service\MyService: '@App\Service\MyService' diff --git a/symfony/phpunit-bridge/3.3/manifest.json b/symfony/phpunit-bridge/3.3/manifest.json index a0437e54..a2ed0cb4 100644 --- a/symfony/phpunit-bridge/3.3/manifest.json +++ b/symfony/phpunit-bridge/3.3/manifest.json @@ -2,7 +2,6 @@ "copy-from-recipe": { ".env.test": ".env.test", "bin/": "%BIN_DIR%/", - "config/": "%CONFIG_DIR%/", "phpunit.xml.dist": "phpunit.xml.dist", "tests/": "tests/" },