hesabix/core/config/services.yaml

38 lines
1.6 KiB
YAML
Raw Normal View History

2025-08-31 15:07:34 +03:30
# 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/'
2025-09-01 20:51:04 +03:30
# Locale Listener
App\EventListener\LocaleListener:
arguments:
$requestStack: '@request_stack'
$localeSwitcher: '@translation.locale_switcher'
tags:
- { name: kernel.event_listener, event: kernel.request, priority: 17 }
# Event Listeners
App\EventListener\Auth\LoginAuditListener:
tags:
- { name: kernel.event_listener, event: App\Event\Auth\UserLoginEvent, method: onEvent, priority: 100 }
App\EventListener\Auth\UserActivityListener:
tags:
- { name: kernel.event_listener, event: App\Event\Auth\UserLoginEvent, method: onEvent, priority: 200 }
2025-08-31 15:07:34 +03:30
# add more service definitions when explicit configuration is needed
# please note that last definitions always *replace* previous ones