You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.8 KiB
44 lines
1.8 KiB
# 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'
|
|
twig:
|
|
form:
|
|
resources:
|
|
- 'GeneratorBundle::fields.html.twig'
|
|
|
|
mailer_transport: smtp
|
|
mailer_host: 127.0.0.1
|
|
mailer_user: admin@example.com
|
|
mailer_password: null
|
|
url_append: ''
|
|
course_info_is_not_editable: false
|
|
sonata_media.cdn.host: /uploads/media
|
|
|
|
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
|
|
# Chamilo\:
|
|
# resource: '../src/*'
|
|
# exclude: '../src/{Entity,Migrations,Tests}'
|
|
|
|
# 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
|
|
twig:
|
|
form:
|
|
resources:
|
|
- 'GeneratorBundle::fields.html.twig'
|
|
|