Add php-parallel-lint

php-lint will test for valid php files

Change-Id: I6170eb1363dd16457b6d783b42e8822518c1bd44
This commit is contained in:
Umherirrender 2017-05-06 01:48:44 +02:00 committed by Antoine Musso
parent e87c489bba
commit 645748d0df
2 changed files with 13 additions and 0 deletions

2
.gitignore vendored
View file

@ -1,2 +1,4 @@
docs/
node_modules/
vendor/
/composer.lock

11
composer.json Normal file
View file

@ -0,0 +1,11 @@
{
"require-dev": {
"jakub-onderka/php-parallel-lint": "0.9.2",
"jakub-onderka/php-console-highlighter": "0.3.2"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor"
]
}
}