|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- # 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:
-
- 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\Exchanges\ExchangeInterface:
- tags:
- - { name: 'arbitry.exchange'}
-
- # 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,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\Controller\:
- resource: '../src/Controller'
- tags: ['controller.service_arguments']
-
- App\Exchanges\Kuna\KunaSigner:
- bind:
- $publicKey: 'test'
- $privateKey: 'test'
-
- Http\Client\HttpClient:
- class: Nyholm\HttpClient\Client
-
- MongoDB\Client:
- factory: ['App\Infrastructure\MongoClientFactory', 'create']
- arguments:
- - '%env(resolve:DATABASE_URL)%'
-
- App\Infrastructure\Arbitration\Inner\ChainProvider: ~
-
- App\Arbitration\Inner\ChainProviderInterface: '@App\Infrastructure\Arbitration\Inner\ChainProvider'
-
- App\Exchanges\ExchangeProvider:
- arguments:
- - !tagged arbitry.exchange
|