mirror of
https://github.com/symfony/recipes.git
synced 2026-09-15 09:06:24 +03:00
tweaked configuration for app.yaml
This commit is contained in:
@@ -3,17 +3,22 @@ services:
|
|||||||
_defaults:
|
_defaults:
|
||||||
# automatically injects dependencies in your services
|
# automatically injects dependencies in your services
|
||||||
autowire: true
|
autowire: true
|
||||||
# automatically registers your services as commands, form types, etc.
|
# automatically registers your services as commands, event subscribers, etc.
|
||||||
autoconfigure: true
|
autoconfigure: true
|
||||||
# this means you cannot fetch services directly from the container via $container->get()
|
# 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
|
# if you need to do this, you can override this setting on individual services
|
||||||
public: false
|
public: false
|
||||||
|
|
||||||
# loads services from whatever directories you want (you can add directories!)
|
# makes classes in src/ available to be used as services
|
||||||
# this creates a service per class whose id is the fully-qualified class name
|
# this creates a service per class whose id is the fully-qualified class name
|
||||||
App\:
|
App\:
|
||||||
resource: '../../src/{Command,Form,EventSubscriber,Twig,Security}'
|
resource: '../../src/*'
|
||||||
|
# you can exclude directories or files
|
||||||
|
# but if a service is unused, it's removed anyway
|
||||||
|
exclude: '../../src/{Entity,Repository}'
|
||||||
|
|
||||||
|
# controllers are imported separately to make sure they're public
|
||||||
|
# and have a tag that allows actions to type-hint services
|
||||||
App\Controller\:
|
App\Controller\:
|
||||||
resource: '../../src/Controller'
|
resource: '../../src/Controller'
|
||||||
public: true
|
public: true
|
||||||
|
|||||||
Reference in New Issue
Block a user