25 lines
1.2 KiB
YAML
25 lines
1.2 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:
|
|
locale: 'en'
|
|
env(TRACKER_LIST_FILE): '%kernel.project_dir%/config/public_trackers.json'
|
|
|
|
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.
|
|
bind:
|
|
$publicTrackers: '%env(json:file:resolve:TRACKER_LIST_FILE)%'
|
|
|
|
App\:
|
|
resource: '../src/*'
|
|
exclude: '../src/{Entity,Migrations,Tests,Kernel.php}'
|
|
|
|
App\Controller\:
|
|
resource: '../src/Controller'
|
|
tags: ['controller.service_arguments']
|