Enable Travis CI
jdarwood007

jdarwood007 commited on 2016-12-28 16:53:29
Showing 2 changed files, with 20 additions and 0 deletions.


Signed-off-by: jdarwood007 <unmonitored+github@sleepycode.com>
... ...
@@ -0,0 +1,11 @@
1
+# Force our line endings to be LF, even for Windows
2
+* text
3
+
4
+# Set certain files to be binary
5
+*.png binary
6
+*.jpg binary
7
+*.gif binary
8
+*.tgz binary
9
+*.zip binary
10
+*.tar.gz binary
11
+*.ttf binary
... ...
@@ -0,0 +1,9 @@
1
+language: php
2
+
3
+php:
4
+  - 5.3
5
+  - 5.6
6
+  - 7.0
7
+
8
+script:
9
+  - if find . -name "*.php" ! -path "./vendor/*" -exec php -l {} 2>&1 \; | grep "syntax error, unexpected"; then exit 1; fi
0 10