|
1 |
| -imports: |
2 |
| - - resource: 'vendor/mediact/testing-suite/config/default/grumphp.yml' |
3 |
| - |
4 | 1 | parameters:
|
| 2 | + # Default settings for testing suite tasks |
5 | 3 | composer.strict: false
|
| 4 | + |
| 5 | + jsonlint.detect_key_conflicts: true |
| 6 | + |
| 7 | + xmllint.load_from_net: true |
| 8 | + xmllint.x_include: true |
| 9 | + xmllint.dtd_validation: true |
| 10 | + xmllint.scheme_validation: true |
| 11 | + xmllint.triggered_by: [xml] |
6 | 12 | xmllint.ignore_patterns:
|
7 | 13 | # Uses an incomplete definition, which conflicts when <exclude-pattern>
|
8 | 14 | # is defined.
|
9 | 15 | - /^phpcs.xml$/
|
10 | 16 | - /^phpmd.xml$/
|
11 |
| - - '#^files/.*\.xml$#' |
| 17 | + - /^phpunit.xml$/ |
| 18 | + - /^pdepend.xml$/ |
| 19 | + - /^files/ |
| 20 | + |
| 21 | + yamllint.parse_constant: true |
| 22 | + |
| 23 | + phpcs.standard: ./phpcs.xml |
| 24 | + phpcs.triggered_by: [php] |
| 25 | + |
| 26 | + phpmd.exclude: [] |
| 27 | + phpmd.ruleset: |
| 28 | + - ./phpmd.xml |
| 29 | + phpmd.triggered_by: [php] |
| 30 | + |
| 31 | + phpstan.autoload_file: ~ |
| 32 | + phpstan.configuration: ./phpstan.neon |
| 33 | + phpstan.level: 4 |
| 34 | + phpstan.triggered_by: [php] |
| 35 | + |
| 36 | + phpunit.config_file: ./phpunit.xml |
| 37 | + |
| 38 | + securitychecker.lockfile: ./composer.lock |
| 39 | + securitychecker.format: ~ |
| 40 | + securitychecker.end_point: ~ |
| 41 | + securitychecker.timeout: ~ |
| 42 | + securitychecker.run_always: true |
| 43 | + |
| 44 | +grumphp: |
| 45 | + |
| 46 | + ascii: |
| 47 | + failed: ~ |
| 48 | + succeeded: ~ |
| 49 | + |
| 50 | + parallel: |
| 51 | + enabled: false |
| 52 | + |
| 53 | + # Default tasks for testing suite |
| 54 | + tasks: |
| 55 | + composer: |
| 56 | + strict: '%composer.strict%' |
| 57 | + |
| 58 | + jsonlint: |
| 59 | + detect_key_conflicts: '%jsonlint.detect_key_conflicts%' |
| 60 | + |
| 61 | + xmllint: |
| 62 | + load_from_net: '%xmllint.load_from_net%' |
| 63 | + x_include: '%xmllint.x_include%' |
| 64 | + dtd_validation: '%xmllint.dtd_validation%' |
| 65 | + scheme_validation: '%xmllint.scheme_validation%' |
| 66 | + triggered_by: '%xmllint.triggered_by%' |
| 67 | + ignore_patterns: '%xmllint.ignore_patterns%' |
| 68 | + |
| 69 | + yamllint: |
| 70 | + parse_constant: '%yamllint.parse_constant%' |
| 71 | + |
| 72 | + phpcs: |
| 73 | + standard: '%phpcs.standard%' |
| 74 | + triggered_by: '%phpcs.triggered_by%' |
| 75 | + |
| 76 | + phpmd: |
| 77 | + exclude: '%phpmd.exclude%' |
| 78 | + ruleset: '%phpmd.ruleset%' |
| 79 | + triggered_by: '%phpmd.triggered_by%' |
| 80 | + |
| 81 | + phpstan: |
| 82 | + autoload_file: '%phpstan.autoload_file%' |
| 83 | + configuration: '%phpstan.configuration%' |
| 84 | + level: '%phpstan.level%' |
| 85 | + triggered_by: '%phpstan.triggered_by%' |
| 86 | + |
| 87 | + phpunit: |
| 88 | + config_file: '%phpunit.config_file%' |
| 89 | + |
| 90 | + securitychecker: |
| 91 | + lockfile: '%securitychecker.lockfile%' |
| 92 | + format: '%securitychecker.format%' |
| 93 | + end_point: '%securitychecker.end_point%' |
| 94 | + timeout: '%securitychecker.timeout%' |
| 95 | + run_always: '%securitychecker.run_always%' |
| 96 | + |
0 commit comments