diff --git a/.gitignore b/.gitignore index 4bf4869..e65c3c5 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ *.kate-swp .*.swp node_modules/ +/vendor diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..686b65b --- /dev/null +++ b/composer.json @@ -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" + ] + } +}