|
- # Put parameters here that don't need to change on each machine where the app is deployed
- # https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
- parameters:
- locale: 'en'
- asset_directory: '%kernel.project_dir%/assets'
-
- services:
- # default configuration for services in *this* file
- _defaults:
- autowire: true # Automatically injects dependencies in your services.
- autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.
- public: false # Allows optimizing the container by removing unused services; this also means
- # fetching services directly from the container via $container->get() won't work.
- # The best practice is to be explicit about your dependencies anyway.
-
- # makes classes in src/ available to be used as services
- # this creates a service per class whose id is the fully-qualified class name
- App\:
- resource: '../src/*'
- exclude: '../src/{Entity,Migrations,Tests,Kernel.php}'
-
- # controllers are imported separately to make sure services can be injected
- # as action arguments even if you don't extend any base controller class
- App\Controller\:
- resource: '../src/Controller'
- tags: ['controller.service_arguments']
-
- App\EventListener\ControllerListener:
- autowire: true
- arguments: ['@router', '@security.token_storage', '@doctrine.orm.entity_manager']
- tags:
- - { name: kernel.event_listener, event: kernel.request, method: onKernelRequest }
- - { name: kernel.event_listener, event: kernel.exception, method: onKernelException }
- - { name: kernel.event_listener, event: kernel.response, method: onKernelResponse }
- - { name: kernel.event_listener, event: kernel.terminate, method: onKernelTerminate }
-
- App\EventListener\DatabaseListener:
- autowire: true
- arguments: ['@security.token_storage','%kernel.environment%']
- tags:
- - { name: doctrine.event_listener, event: postPersist }
- - { name: doctrine.event_listener, event: postUpdate }
- - { name: doctrine.event_listener, event: preRemove }
-
- App\Command\:
- resource: '../src/Command/'
- autowire: true
- autoconfigure: true
- arguments: ['@doctrine.orm.entity_manager', '@service_container']
- tags:
- - { name: 'console.command' }
-
- phpspreadsheet:
- class: 'Onurb\Bundle\ExcelBundle\Factory\ExcelFactory'
- public: true
-
-
- # add more service definitions when explicit configuration is needed
- # please note that last definitions always *replace* previous ones
- json_guard_authenticator:
- class: App\Security\JsonAuthenticator
- arguments: ['@doctrine.orm.entity_manager', '@router']
|