mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-22 05:56:08 +01:00
Extend dependency checker to TYPO3 specific files
Only autoloaded files will be checked by default. TYPO3 has some additional files which should be scanned as well.
This commit is contained in:
parent
8ecc704cd9
commit
9fe11b300c
2 changed files with 9 additions and 1 deletions
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
|
@ -50,7 +50,7 @@ jobs:
|
|||
run: composer install --prefer-dist --no-progress --no-suggest --no-plugins
|
||||
|
||||
- name: Missing composer requirements
|
||||
run: ./vendor/bin/composer-require-checker
|
||||
run: ./vendor/bin/composer-require-checker check --config-file dependency-checker.json
|
||||
|
||||
xml-linting:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
8
dependency-checker.json
Normal file
8
dependency-checker.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"scan-files": [
|
||||
"*.php",
|
||||
"Configuration/*php",
|
||||
"Configuration/Backend/*.php",
|
||||
"Configuration/TCA/*.php"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue