Created
December 7, 2019 14:48
-
-
Save theodesp/c7d2a79f983b764baec59ee428ee9c9d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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' | |
# This parameter defines the codes of the locales (languages) enabled in the application | |
app_locales: en|fr|de|el | |
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: | |
$locales: '%app_locales%' | |
$defaultLocale: '%locale%' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment