# yaml-language-server: $schema=../vendor/symfony/dependency-injection/Loader/schema/services.schema.json # This file is the entry point to configure your own services. # Files in the packages/ subdirectory configure your dependencies. # See also https://symfony.com/doc/current/service_container/import.html # 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/' # add more service definitions when explicit configuration is needed # please note that last definitions always *replace* previous ones App\EventSubscriber\ProductAuditSubscriber: tags: - { name: doctrine.event_subscriber } App\EventSubscriber\PieceAuditSubscriber: tags: - { name: doctrine.event_subscriber } App\EventSubscriber\ComposantAuditSubscriber: tags: - { name: doctrine.event_subscriber } App\Mcp\Security\McpHeaderAuthenticator: arguments: $mcpAuthLimiter: '@limiter.mcp_auth' App\OpenApi\OpenApiDecorator: decorates: 'api_platform.openapi.factory' arguments: $decorated: '@.inner' when@test: services: App\Service\Sync\ProductSyncStrategy: autowire: true autoconfigure: true public: true App\Service\Sync\ComposantSyncStrategy: autowire: true autoconfigure: true public: true App\Service\Sync\PieceSyncStrategy: autowire: true autoconfigure: true public: true App\Service\ModelTypeSyncService: autowire: true autoconfigure: true public: true App\Service\ReferenceAutoGenerator: autowire: true autoconfigure: true public: true App\Service\SkeletonStructureService: autowire: true autoconfigure: true public: true