# 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/' App\Twig\ViteAssetExtension: arguments: $manifest: '%kernel.project_dir%/public/build/.vite/manifest.json' $cache: '@vite_cache_pool' # Utilisation du listener de Nelmio (identifiant officiel) $cspListener: '@nelmio_security.csp_listener' App\Security\MaintenanceListener: arguments: $projectDir: '%kernel.project_dir%' tags: - { name: kernel.event_listener, event: kernel.request, priority: 255 } App\Command\MaintenanceCommand: arguments: $projectDir: '%kernel.project_dir%' App\Event\Seo\SeoBlockerSubscriber: arguments: $projectDir: '%kernel.project_dir%' App\Twig\OnlineExtension: arguments: $projectDir: '%kernel.project_dir%'