Newer
Older
# 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:
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.
# 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/Entity/'
- '../src/Kernel.php'
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Сервисы действий
App\Service\Action\ActionServiceInterface $registerService: '@App\Service\Action\Classes\Register'
App\Service\Action\ActionServiceInterface: '@App\Service\Action\Classes\None'
# Сервисы Dto
App\Service\Dto\DtoServiceInterface $registerDto: '@App\Service\Dto\Classes\RegisterDto'
App\Service\Dto\DtoServiceInterface: '@App\Service\Dto\Classes\NoneDto'
# Сервисы ответа
App\Service\Response\ResponseServiceInterface $profileResponse: '@App\Service\Response\Classes\ProfileResponse'
App\Service\Response\ResponseServiceInterface: '@App\Service\Response\Classes\Response'
# События JWT авторизации
acme_api.event.authentication_success_listener:
class: App\Listeners\JwtListener
tags:
- { name: kernel.event_listener, event: lexik_jwt_authentication.on_authentication_success, method: onAuthenticationSuccessResponse }
acme_api.event.authentication_failure_listener:
class: App\Listeners\JwtListener
tags:
- { name: kernel.event_listener, event: lexik_jwt_authentication.on_authentication_failure, method: onAuthenticationFailureResponse }
acme_api.event.jwt_invalid_listener:
class: App\Listeners\JwtListener
tags:
- { name: kernel.event_listener, event: lexik_jwt_authentication.on_jwt_invalid, method: onJWTInvalid }
acme_api.event.jwt_notfound_listener:
class: App\Listeners\JwtListener
tags:
- { name: kernel.event_listener, event: lexik_jwt_authentication.on_jwt_not_found, method: onJWTNotFound }
acme_api.event.jwt_expired_listener:
class: App\Listeners\JwtListener
tags:
- { name: kernel.event_listener, event: lexik_jwt_authentication.on_jwt_expired, method: onJWTExpired }