|
@@ -2,7 +2,7 @@
|
|
|
# Files in the packages/ subdirectory configure your dependencies.
|
|
|
|
|
|
# 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
|
|
|
+# https://symfony.com/doc/current/best_practices.html#use-parameters-for-application-configuration
|
|
|
parameters:
|
|
|
locale: 'fr'
|
|
|
|
|
@@ -15,14 +15,11 @@ services:
|
|
|
# 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/{DependencyInjection,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']
|
|
|
+ resource: '../src/'
|
|
|
+ exclude:
|
|
|
+ - '../src/DependencyInjection/'
|
|
|
+ - '../src/Entity/'
|
|
|
+ - '../src/Kernel.php'
|
|
|
|
|
|
# add more service definitions when explicit configuration is needed
|
|
|
# please note that last definitions always *replace* previous ones
|