From 130cd4cd42f6701a1bf12d92320d2204c144f463 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Thu, 30 Nov 2017 21:19:18 -0500 Subject: [PATCH] adding services_test.yaml when you install phpunit bridge --- symfony/phpunit-bridge/3.3/config/services_test.yaml | 9 +++++++++ symfony/phpunit-bridge/3.3/manifest.json | 1 + 2 files changed, 10 insertions(+) create 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 new file mode 100644 index 00000000..876c36bd --- /dev/null +++ b/symfony/phpunit-bridge/3.3/config/services_test.yaml @@ -0,0 +1,9 @@ +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 b1f99d2c..0a066fbf 100644 --- a/symfony/phpunit-bridge/3.3/manifest.json +++ b/symfony/phpunit-bridge/3.3/manifest.json @@ -1,6 +1,7 @@ { "copy-from-recipe": { "bin/": "%BIN_DIR%/", + "config/": "%CONFIG_DIR%/", "phpunit.xml.dist": "phpunit.xml.dist", "tests/": "tests/" },