composer test entry point

Just run php lint for now.

Change-Id: I2bbe7543588c25669e4d4a3958b66f3f79240ea5
This commit is contained in:
Antoine Musso 2015-11-23 22:04:08 +01:00
parent ee37257718
commit 5ee20fcbab
2 changed files with 13 additions and 1 deletions

4
.gitignore vendored
View file

@ -3,4 +3,6 @@
*.kate-swp
.*.swp
.idea
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"
]
}
}