Initial commit
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
# 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:
|
||||
app_crawling_notification_email: '%env(CRAWLING_NOTIFICATION_EMAIL)%'
|
||||
|
||||
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:
|
||||
$projectDir: '%kernel.project_dir%'
|
||||
$crawlingNotificationEmail: '%app_crawling_notification_email%'
|
||||
|
||||
_instanceof:
|
||||
App\SharedKernel\Application\Messaging\CommandHandler:
|
||||
tags:
|
||||
- { name: messenger.message_handler, bus: 'command.bus' }
|
||||
App\SharedKernel\Application\Messaging\QueryHandler:
|
||||
tags:
|
||||
- { name: messenger.message_handler, bus: 'query.bus' }
|
||||
App\SharedKernel\Application\Messaging\MessageHandler:
|
||||
tags:
|
||||
- { name: messenger.message_handler, bus: 'message.bus' }
|
||||
App\SharedKernel\Domain\EventListener\EventListener:
|
||||
tags:
|
||||
- { name: kernel.event_listener }
|
||||
|
||||
Symfony\Bridge\Monolog\Processor\ConsoleCommandProcessor:
|
||||
tags:
|
||||
- { name: monolog.processor, channel: 'app' }
|
||||
Symfony\Bridge\Monolog\Processor\RouteProcessor:
|
||||
tags:
|
||||
- { name: monolog.processor, channel: 'app' }
|
||||
Symfony\Bridge\Monolog\Processor\TokenProcessor:
|
||||
tags:
|
||||
- { name: monolog.processor, channel: 'app' }
|
||||
App\SharedKernel\Infrastructure\Framework\Symfony\Logging\TelegramFormatter:
|
||||
tags:
|
||||
- { name: monolog.formatter }
|
||||
|
||||
# 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/SharedKernel/Infrastructure/Framework/Symfony/Kernel.php'
|
||||
- '../src/**/Domain/Model/Entity/*'
|
||||
- '../src/**/Domain/Model/ValueObject/*'
|
||||
|
||||
# add more service definitions when explicit configuration is needed
|
||||
# please note that last definitions always *replace* previous ones
|
||||
Reference in New Issue
Block a user