# 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/configuration.html#application-related-configuration parameters: google_recaptcha_site_key: '%env(GOOGLE_RECAPTCHA_SITE_KEY)%' 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: # $slackLogger: '@monolog.logger.regburns' # 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\RegBurns\Application\: resource: '../application/RegBurns/Application/*' exclude: '../application/RegBurns/Application/{Input,Output}' App\RegBurns\Infrastructure\: resource: '../application/RegBurns/Infrastructure/*' exclude: '../application/RegBurns/Infrastructure/{Translations}' App\: resource: '../src/*' exclude: '../src/{DependencyInjection,Entity,Migrations,Tests,Kernel.php}' # controllers are imported separately to make sure services can be injected # as action arguments even if you don't extend any base controller class App\RegBurns\Infrastructure\Web\Controller\: resource: '../application/RegBurns/Infrastructure/Web/Controller' tags: [ 'controller.service_arguments' ] App\Controller\: resource: '../src/Controller' tags: [ 'controller.service_arguments' ] # add more service definitions when explicit configuration is needed # please note that last definitions always *replace* previous ones App\RegBurns\Infrastructure\Web\Managers\MediaManager: arguments: $generator: "@knp_snappy.pdf" App\RegBurns\Infrastructure\Web\Security\LoginFormAuthenticator: arguments: $devSpoofAuth: '%env(bool:DEV_SPOOF_AUTH)%' # override email provider to translate title and content uniweb_auth.two_factor_provider.email_token: class: App\RegBurns\Infrastructure\Web\Security\CustomEmailTokenProvider tags: - { name: 'scheb_two_factor.provider', alias: 'email_token' } # override email provider to translate title and content Uniweb\AuthBundle\Security\Http\TwoFactor\Provider\EmailToken\EmailTokenProvider: alias: uniweb_auth.two_factor_provider.email_token