Skip to content

Commit 7c64aa3

Browse files
committed
Fixed build
1 parent 02dd1bd commit 7c64aa3

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ script:
99
- vendor/bin/phing
1010
- >
1111
wget https://github.com/maglnet/ComposerRequireChecker/releases/download/0.2.1/composer-require-checker.phar
12-
&& php composer-require-checker.phar check composer.json
12+
&& php composer-require-checker.phar check --config-file $(pwd)/composer-require-checker.json composer.json
1313
after_script:
1414
- php vendor/bin/coveralls -v

composer-require-checker.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"symbol-whitelist" : [
3+
"null", "true", "false",
4+
"static", "self", "parent",
5+
"array", "string", "int", "float", "bool", "iterable", "callable", "void", "object",
6+
"Doctrine\\ORM\\Query\\QueryException"
7+
],
8+
"php-core-extensions" : [
9+
"Core",
10+
"date",
11+
"pcre",
12+
"Phar",
13+
"Reflection",
14+
"SPL",
15+
"standard",
16+
"pcntl",
17+
"mbstring"
18+
]
19+
}

0 commit comments

Comments
 (0)