93 lines
3.4 KiB
YAML
93 lines
3.4 KiB
YAML
# 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:
|
|
map_default:
|
|
latitude: 14.6091
|
|
longitude: 121.0223
|
|
image_upload_directory: '%kernel.project_dir%/public/uploads'
|
|
job_order_refresh_interval: 300000
|
|
|
|
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.
|
|
public: false # Allows optimizing the container by removing unused services; this also means
|
|
# fetching services directly from the container via $container->get() won't work.
|
|
# The best practice is to be explicit about your dependencies anyway.
|
|
|
|
# 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/{Entity,Migrations,Tests,Menu,Access}'
|
|
|
|
# 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']
|
|
|
|
# add more service definitions when explicit configuration is needed
|
|
# please note that last definitions always *replace* previous ones
|
|
App\Menu\Generator:
|
|
arguments:
|
|
$router: "@router.default"
|
|
$cache_dir: "%kernel.cache_dir%"
|
|
$config_dir: "%kernel.root_dir%/../config"
|
|
|
|
App\Access\Generator:
|
|
arguments:
|
|
$router: "@router.default"
|
|
$cache_dir: "%kernel.cache_dir%"
|
|
$config_dir: "%kernel.root_dir%/../config"
|
|
|
|
App\Access\Voter:
|
|
arguments:
|
|
$acl_gen: "@App\\Access\\Generator"
|
|
tags: ['security.voter']
|
|
|
|
App\Service\FileUploader:
|
|
arguments:
|
|
$target_dir: '%image_upload_directory%'
|
|
|
|
App\Service\MapTools:
|
|
arguments:
|
|
$em: "@doctrine.orm.entity_manager"
|
|
$gmaps_api_key: "%env(GMAPS_API_KEY)%"
|
|
|
|
App\Service\RisingTideGateway:
|
|
arguments:
|
|
$em: "@doctrine.orm.entity_manager"
|
|
$user: "%env(RT_USER)%"
|
|
$pass: "%env(RT_PASS)%"
|
|
$usage_type: "%env(RT_USAGE_TYPE)%"
|
|
$shortcode: "%env(RT_SHORTCODE)%"
|
|
|
|
App\Service\MQTTClient:
|
|
arguments:
|
|
$ip_address: "%env(MQTT_IP_ADDRESS)%"
|
|
$port: "%env(MQTT_PORT)%"
|
|
$cert: "%env(MQTT_CERT)%"
|
|
|
|
App\Service\APNSClient:
|
|
arguments:
|
|
$ip_address: "%env(APNS_REDIS_IP_ADDRESS)%"
|
|
$port: "%env(APNS_REDIS_PORT)%"
|
|
|
|
Catalyst\APIBundle\Security\APIKeyUserProvider:
|
|
arguments:
|
|
$em: "@doctrine.orm.entity_manager"
|
|
|
|
Catalyst\APIBundle\Security\APIKeyAuthenticator:
|
|
arguments:
|
|
$em: "@doctrine.orm.entity_manager"
|
|
|
|
Catalyst\APIBundle\Command\UserCreateCommand:
|
|
arguments:
|
|
$em: "@doctrine.orm.entity_manager"
|
|
tags: ['console.command']
|
|
|
|
Catalyst\APIBundle\Command\TestCommand:
|
|
tags: ['console.command']
|
|
|