2023-03-11 16:27:07 +00:00
|
|
|
# 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.
|
2023-03-26 14:06:19 +00:00
|
|
|
bind:
|
|
|
|
# TODO: fix retrieval
|
|
|
|
# Telegram Bot API
|
|
|
|
$telegramToken: ''
|
|
|
|
# Point API
|
2023-03-28 20:41:04 +00:00
|
|
|
$pointDomain: 'point.im'
|
|
|
|
$pointScheme: 'https'
|
2023-04-01 16:10:26 +00:00
|
|
|
$pointApiDelay: 5000
|
2023-03-26 14:06:19 +00:00
|
|
|
$pointAppUserId: ''
|
|
|
|
$pointApiClient: '@app.point.http_client'
|
2023-04-01 16:45:21 +00:00
|
|
|
# Crawler API
|
|
|
|
$crawlerToken: ''
|
2023-03-11 16:27:07 +00:00
|
|
|
|
|
|
|
# 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'
|
|
|
|
|
2023-03-26 14:06:19 +00:00
|
|
|
# HTTP client for Point API
|
2023-04-01 16:38:17 +00:00
|
|
|
app.point.http_client:
|
|
|
|
class: Symfony\Component\HttpClient\HttpClient
|
2023-03-26 14:06:19 +00:00
|
|
|
factory: [null, 'create']
|
|
|
|
arguments:
|
|
|
|
base_uri: '%point_base_url%'
|
|
|
|
timeout: 5.0
|