Add php-parallel-lint

php-lint will test for valid php files

Change-Id: I2e59da55ff2d5dfcc668bcbd81df4708c8d5f4c6
This commit is contained in:
Umherirrender 2017-05-06 12:29:37 +02:00
parent 68f89b28b5
commit 88329411c7
2 changed files with 12 additions and 0 deletions

1
.gitignore vendored
View file

@ -3,3 +3,4 @@
*.kate-swp
.*.swp
node_modules/
/vendor

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"
]
}
}