composer test entry point

Just run php lint for now.

Change-Id: I2bbe7543588c25669e4d4a3958b66f3f79240ea5
This commit is contained in:
Antoine Musso 2015-11-23 21:09:11 +01:00
parent 9aa7961c60
commit 21d85fcf66
2 changed files with 13 additions and 1 deletions

4
.gitignore vendored
View file

@ -2,4 +2,6 @@
*~ *~
*.kate-swp *.kate-swp
.*.swp .*.swp
node_modules/ /node_modules/
/vendor/
/composer.lock

10
composer.json Normal file
View file

@ -0,0 +1,10 @@
{
"require-dev": {
"jakub-onderka/php-parallel-lint": "0.9"
},
"scripts": {
"test": [
"parallel-lint . --exclude node_modules --exclude vendor"
]
}
}