Skip to content

Commit

Permalink
TravisCI: Drop support for PHP 5.6 and add PHP 7.2
Browse files Browse the repository at this point in the history
See #3 for decision details
  • Loading branch information
andygrunwald committed Dec 17, 2017
1 parent e0c7806 commit 0cad3f4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
@@ -1,15 +1,19 @@
language: php

php:
- '5.6'
- '7.0'
- '7.1'
- '7.2'
- nightly

matrix:
allow_failures:
- php: nightly

install:
- pear install PHP_CodeSniffer
- phpenv rehash

script:
- find . -name '*.php' -print0 | xargs -0 -n1 php -lf
- phpcs --standard=PSR1,PSR2 --extensions=php --ignore="^$(pwd)/ext_scripts/*" . || true # Allow failures for now

0 comments on commit 0cad3f4

Please sign in to comment.