services.yml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # Learn more about services, parameters and containers at
  2. # https://symfony.com/doc/current/service_container.html
  3. parameters:
  4. #parameter_name: value
  5. services:
  6. # default configuration for services in *this* file
  7. _defaults:
  8. # automatically injects dependencies in your services
  9. autowire: true
  10. # automatically registers your services as commands, event subscribers, etc.
  11. autoconfigure: true
  12. # this means you cannot fetch services directly from the container via $container->get()
  13. # if you need to do this, you can override this setting on individual services
  14. public: false
  15. # makes classes in src/AppBundle available to be used as services
  16. # this creates a service per class whose id is the fully-qualified class name
  17. AppBundle\:
  18. resource: '../../src/AppBundle/*'
  19. # you can exclude directories or files
  20. # but if a service is unused, it's removed anyway
  21. exclude: '../../src/AppBundle/{Entity,Repository,Tests}'
  22. # controllers are imported separately to make sure they're public
  23. # and have a tag that allows actions to type-hint services
  24. AppBundle\Controller\:
  25. resource: '../../src/AppBundle/Controller'
  26. public: true
  27. tags: ['controller.service_arguments']
  28. # add more services, or override services that need manual wiring
  29. # AppBundle\Service\ExampleService:
  30. # arguments:
  31. # $someArgument: 'some_value'
  32. AppBundle\Service\ActivityListener:
  33. tags:
  34. - { name: 'kernel.event_listener', event: 'kernel.controller', method: onCoreController }
  35. AppBundle\Service\Search:
  36. arguments:
  37. - "@doctrine.orm.entity_manager"
  38. film.unicite_collections:
  39. class: AppBundle\Service\UniciteCollections
  40. public: true
  41. arguments:
  42. - "@doctrine.orm.entity_manager"
  43. film.mail:
  44. class: AppBundle\Service\Mail
  45. public: true
  46. arguments:
  47. - "@mailer"
  48. - "@twig"
  49. - '%mail_from%'
  50. - '%mail_reply%'
  51. - '%mail_name%'
  52. AppBundle\Service\Mattermost:
  53. arguments:
  54. $url: '%mattermost_url%'