aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Zelent <zelent.marcin@gmail.com>2018-03-16 17:48:44 +0100
committerMarcin Zelent <zelent.marcin@gmail.com>2018-03-16 17:48:44 +0100
commited01011dfb563e7d8ab13b6a0718eed7bf857880 (patch)
tree104a22a75d287d0607668eea3177eec626ab3f80 /pollutometer-php/app/config/services.yml
parent1d24e941dc7d9da10c9045203ae18f5234c774f5 (diff)
Moved PHP website to separate directory.
Diffstat (limited to 'pollutometer-php/app/config/services.yml')
-rw-r--r--pollutometer-php/app/config/services.yml38
1 files changed, 38 insertions, 0 deletions
diff --git a/pollutometer-php/app/config/services.yml b/pollutometer-php/app/config/services.yml
new file mode 100644
index 0000000..7ddee7c
--- /dev/null
+++ b/pollutometer-php/app/config/services.yml
@@ -0,0 +1,38 @@
+# Learn more about services, parameters and containers at
+# https://symfony.com/doc/current/service_container.html
+parameters:
+ #parameter_name: value
+
+services:
+ # default configuration for services in *this* file
+ _defaults:
+ # automatically injects dependencies in your services
+ autowire: true
+ # automatically registers your services as commands, event subscribers, etc.
+ autoconfigure: true
+ # this means you cannot fetch services directly from the container via $container->get()
+ # if you need to do this, you can override this setting on individual services
+ public: false
+
+ # makes classes in src/AppBundle available to be used as services
+ # this creates a service per class whose id is the fully-qualified class name
+ AppBundle\:
+ resource: '../../src/AppBundle/*'
+ # you can exclude directories or files
+ # but if a service is unused, it's removed anyway
+ exclude: '../../src/AppBundle/{Entity,Repository,Tests}'
+
+ # controllers are imported separately to make sure they're public
+ # and have a tag that allows actions to type-hint services
+ AppBundle\Controller\:
+ resource: '../../src/AppBundle/Controller'
+ public: true
+ tags: ['controller.service_arguments']
+
+ AppBundle\Utils\Aqi:
+ public: false
+
+ # add more services, or override services that need manual wiring
+ # AppBundle\Service\ExampleService:
+ # arguments:
+ # $someArgument: 'some_value'