development.services.yml

Same filename in this branch
  1. main core/assets/scaffold/files/development.services.yml
Same filename and directory in other branches
  1. 10 sites/development.services.yml
  2. 11.x sites/development.services.yml
  3. 11.x core/assets/scaffold/files/development.services.yml
  4. 10 core/assets/scaffold/files/development.services.yml
  5. 9 sites/development.services.yml
  6. 9 core/assets/scaffold/files/development.services.yml
  7. 8.9.x sites/development.services.yml
  8. 8.9.x core/assets/scaffold/files/development.services.yml
sites/development.services.yml

File

sites/development.services.yml

View source
  1. # Local development services.
  2. #
  3. # The development.services.yml file allows the developer to override
  4. # container parameters for debugging.
  5. #
  6. # To activate this feature, follow the instructions at the top of the
  7. # 'example.settings.local.php' file, which sits next to this file.
  8. #
  9. # Be aware that in Drupal's configuration system, all the files that
  10. # provide container definitions are merged using a shallow merge approach
  11. # within \Drupal\Core\DependencyInjection\YamlFileLoader.
  12. # This means that if you want to override any value of a parameter, the
  13. # whole parameter array needs to be copied from
  14. # sites/default/default.services.yml or from core/core.services.yml file.
  15. parameters:
  16. http.response.debug_cacheability_headers: true
  17. services:
  18. cache.backend.null:
  19. class: Drupal\Core\Cache\NullBackendFactory
  20. logger.channel.config_schema:
  21. parent: logger.channel_base
  22. arguments: [ 'config_schema' ]
  23. config.schema_checker:
  24. class: Drupal\Core\Config\Development\LenientConfigSchemaChecker
  25. arguments:
  26. - '@config.typed'
  27. - '@messenger'
  28. - '@logger.channel.config_schema'
  29. tags:
  30. - { name: event_subscriber }

Services

Title Deprecated Summary
cache.backend.null Drupal\Core\Cache\NullBackendFactory
config.schema_checker Drupal\Core\Config\Development\LenientConfigSchemaChecker
logger.channel.config_schema

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.