forked from symfony/demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.yaml
44 lines (37 loc) · 2.15 KB
/
services.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# This file is the entry point to configure your own services.
# 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.html#use-parameters-for-application-configuration
parameters:
locale: 'en'
# This parameter defines the codes of the locales (languages) enabled in the application
app_locales: ar|en|fr|de|es|cs|nl|ru|uk|ro|pt_BR|pl|it|ja|id|ca|sl|hr|zh_CN|bg|tr|lt|bs|sr_Cyrl|sr_Latn|eu
app.notifications.email_sender: [email protected]
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.
bind: # defines the scalar arguments once and apply them to any service defined/created in this file
string $locales: '%app_locales%'
string $defaultLocale: '%locale%'
string $emailSender: '%app.notifications.email_sender%'
# 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/'
- '../src/Document/'
- '../src/Kernel.php'
# when the service definition only contains arguments, you can omit the
# 'arguments' key and define the arguments just below the service class
App\EventSubscriber\CommentNotificationSubscriber:
$sender: '%app.notifications.email_sender%'
Symfony\Component\Security\Http\Logout\LogoutUrlGenerator: '@security.logout_url_generator'
# Enable autowiring for MongoDB ODM Repositories
# This is incompatible with Doctrine ORM which also declare this alias
Doctrine\Persistence\ManagerRegistry: '@doctrine_mongodb'
# Necessary to resolve the documents in controller arguments
Symfony\Bridge\Doctrine\ArgumentResolver\EntityValueResolver:
tags: ['controller.argument_value_resolver']