-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.yaml
77 lines (63 loc) · 2.66 KB
/
services.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# 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.
_instanceof:
App\Gateway\GatewayInterface:
tags: ['app.gateway.gateway']
App\Library\Economy\Currency\ExchangeInterface:
tags: ['app.lib.economy.currency.exchange']
AutoMapper\Provider\ProviderInterface:
tags: ['app.mapping.map_provider']
AutoMapper\Transformer\PropertyTransformer\PropertyTransformerInterface:
tags: ['app.mapping.map_transformer']
# 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/DependencyInjection/'
- '../src/Entity/'
- '../src/Kernel.php'
App\DependencyInjection\SystemVariablesLoader:
tags: ['container.env_var_loader']
App\OpenApi\OpenApiFactory:
autoconfigure: false
decorates: 'api_platform.openapi.factory'
arguments:
- '@App\OpenApi\OpenApiFactory.inner'
App\Gateway\GatewayLocator:
arguments:
- !tagged 'app.gateway.gateway'
App\Gateway\Paypal\PaypalService:
arguments:
- '%env(PAYPAL_API_ADDRESS)%'
- '%env(PAYPAL_CLIENT_ID)%'
- '%env(PAYPAL_CLIENT_SECRET)%'
- '%env(PAYPAL_WEBHOOK_ID)%'
App\Gateway\Stripe\StripeGateway:
arguments:
- '%env(STRIPE_API_KEY)%'
- '%env(STRIPE_WEBHOOK_SECRET)%'
App\Service\Auth\AuthService:
arguments:
- '%env(APP_SECRET)%'
App\Service\LocalizationService:
arguments:
- '%kernel.default_locale%'
App\Library\Economy\Currency\ExchangeLocator:
arguments:
- !tagged 'app.lib.economy.currency.exchange'
App\Mapping\AutoMapper:
arguments:
- '%kernel.cache_dir%'
- !tagged 'app.mapping.map_provider'
- !tagged 'app.mapping.map_transformer'
# add more service definitions when explicit configuration is needed
# please note that last definitions always *replace* previous ones