From dc364222d98115cbb5a22d195c6cb5adbef0f215 Mon Sep 17 00:00:00 2001
From: Lukas Reschke <lukas@owncloud.com>
Date: Wed, 16 Mar 2016 11:52:30 +0100
Subject: [PATCH] Execute PHP Parallel Linter on Travis

---
 .travis.yml   | 9 +++++++++
 composer.json | 4 ++++
 2 files changed, 13 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index 0f6a027d061..c00213975f9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,6 +29,7 @@ install:
 
 
 script:
+  - sh -c "if [ '$TC' = 'syntax' ]; then composer install && lib/composer/bin/parallel-lint --exclude lib/composer/jakub-onderka/ --exclude 3rdparty .; fi"
   - sh -c "if [ '$TEST_DAV' != '1' ]; then echo \"Not testing DAV\"; fi"
   - sh -c "if [ '$TEST_DAV' = '1' ]; then echo \"Testing DAV\"; fi"
 
@@ -42,5 +43,13 @@ matrix:
       env: DB=sqlite;TC=carddav
     - php: 5.4
       env: DB=sqlite;TC=caldav
+    - php: 5.4
+      env: DB=sqlite;TC=syntax
+    - php: 5.5
+      env: DB=sqlite;TC=syntax
+    - php: 5.6
+      env: DB=sqlite;TC=syntax
+    - php: 7.0
+      env: DB=sqlite;TC=syntax
 
   fast_finish: true
diff --git a/composer.json b/composer.json
index 98fdb3aa31c..495a9896ae2 100644
--- a/composer.json
+++ b/composer.json
@@ -4,5 +4,9 @@
     },
     "autoload" : {
         "psr-4": {"OC\\": "lib/private"}
+    },
+    "require-dev": {
+        "jakub-onderka/php-parallel-lint": "^0.9.2",
+        "jakub-onderka/php-console-highlighter": "^0.3.2"
     }
 }
-- 
GitLab