From 188f7383ca55c54a14460d78be34d88fa24d244d Mon Sep 17 00:00:00 2001 From: paladox Date: Wed, 22 Jul 2015 18:10:46 -0400 Subject: [PATCH] Add composer.json and php lint This file will be used for php code sniffer. Change-Id: Icb4b53973b19b6e5e799cca20ecdb63853bf5cb3 --- composer.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..3d55a97 --- /dev/null +++ b/composer.json @@ -0,0 +1,10 @@ +{ + "require-dev": { + "jakub-onderka/php-parallel-lint": "0.9.*" + }, + "scripts": { + "test": [ + "parallel-lint . --exclude vendor" + ] + } +}