mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
Use custom config of composer-require-checker
This commit is contained in:
parent
59e66e1c81
commit
95685ce3b9
2 changed files with 18 additions and 1 deletions
2
.github/workflows/application.yml
vendored
2
.github/workflows/application.yml
vendored
|
|
@ -116,7 +116,7 @@ jobs:
|
|||
|
||||
-
|
||||
name: Run ComposerRequireChecker
|
||||
run: composer-require-checker check
|
||||
run: composer-require-checker check --config-file=composer-require-checker.json
|
||||
if: always() && steps.end-of-setup.outcome == 'success'
|
||||
|
||||
architecture-tests:
|
||||
|
|
|
|||
17
composer-require-checker.json
Normal file
17
composer-require-checker.json
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"symbol-whitelist" : [
|
||||
"null", "true", "false",
|
||||
"static", "self", "parent",
|
||||
"array", "string", "int", "float", "bool", "iterable", "callable", "void", "object", "mixed", "never"
|
||||
],
|
||||
"php-core-extensions" : [
|
||||
"Core",
|
||||
"date",
|
||||
"pcre",
|
||||
"Phar",
|
||||
"Reflection",
|
||||
"SPL",
|
||||
"standard"
|
||||
],
|
||||
"scan-files" : []
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue