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.
74 lines
2.6 KiB
74 lines
2.6 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:
|
|
app_env: '%env(APP_ENV)%'
|
|
password_encryption: '%env(APP_ENCRYPT_METHOD)%'
|
|
secret: '%env(APP_SECRET)%'
|
|
locale: '%env(APP_LOCALE)%'
|
|
installed: '%env(APP_INSTALLED)%'
|
|
container.dumper.inline_factories: true
|
|
twig:
|
|
form:
|
|
resources:
|
|
- 'GeneratorBundle::fields.html.twig'
|
|
course_info_is_not_editable: false
|
|
|
|
# router.request_context.base_url: '%env(APP_URL_APPEND)%'
|
|
# asset.request_context.base_path: '%env(APP_URL_APPEND)%'
|
|
|
|
# See https://glide.thephpleague.com/2.0/api/quick-reference/
|
|
glide_media_filters:
|
|
editor_thumbnail:
|
|
w: 64
|
|
h: 64
|
|
user_picture_small:
|
|
w: 48
|
|
h: 48
|
|
user_picture_profile:
|
|
w: 94
|
|
h: 94
|
|
course_picture_small:
|
|
w: 85
|
|
h: 47
|
|
course_picture_medium:
|
|
w: 400
|
|
h: 225
|
|
resource_show_preview:
|
|
w: 500
|
|
|
|
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: true # 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.
|
|
|
|
# App\ApiPlatform\AutoGroupResourceMetadataFactory:
|
|
# # causes this to decorate around the cached factory so that
|
|
# # our service is never cached (which, of course, can have performance
|
|
# # implications!
|
|
# decoration_priority: -20
|
|
|
|
# makes classes in src/ available to be used as services
|
|
# this creates a service per class whose id is the fully-qualified class name
|
|
|
|
Vich\UploaderBundle\Naming\SubdirDirectoryNamer:
|
|
public: true
|
|
|
|
Symfony\Component\Mailer\Mailer:
|
|
public: true
|
|
|
|
Doctrine\ORM\EntityManager: "@doctrine.orm.default_entity_manager"
|
|
|
|
# Locale listener
|
|
Chamilo\CoreBundle\EventSubscriber\LocaleSubscriber:
|
|
arguments: ['%kernel.default_locale%', '@Chamilo\CoreBundle\Settings\SettingsManager', '@parameter_bag']
|
|
|
|
cocur_slugify:
|
|
lowercase: true
|
|
|
|
imports:
|
|
- {resource: ../src/CoreBundle/Resources/config/services.yml}
|
|
- {resource: ../src/LtiBundle/Resources/config/services.yml}
|
|
|