package_manager.schema.yml

Same filename and directory in other branches
  1. 11.x core/modules/package_manager/config/schema/package_manager.schema.yml
core/modules/package_manager/config/schema/package_manager.schema.yml

File

core/modules/package_manager/config/schema/package_manager.schema.yml

View source
  1. package_name:
  2. type: string
  3. label: 'Package name'
  4. constraints:
  5. Regex:
  6. # @see https://getcomposer.org/schema.json
  7. pattern: '/^[a-z0-9]([_.-]?[a-z0-9]+)*\/[a-z0-9](([_.]|-{1,2})?[a-z0-9]+)*$/'
  8. package_manager.settings:
  9. type: config_object
  10. label: 'Package Manager settings'
  11. mapping:
  12. additional_trusted_composer_plugins:
  13. type: sequence
  14. label: 'Additional trusted composer plugins'
  15. sequence:
  16. type: package_name
  17. label: 'Trusted composer plugin'
  18. include_unknown_files_in_project_root:
  19. type: boolean
  20. label: 'Include unrecognized files and directories in the project root in staging operations'
  21. log:
  22. type: string
  23. label: 'Path of a file to which Composer Stager process output should be logged'
  24. constraints:
  25. NotBlank: []
  26. requiredKey: false

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