Skip to content

Commit

Permalink
Raised PHP build versions to 7.2 - 7.4 and hopefully fixed issue with…
Browse files Browse the repository at this point in the history
… Travis (wrong method name applied in PR #458)

refs #455
fixes #461
  • Loading branch information
M4LuZ authored and andygrunwald committed Dec 3, 2020
1 parent 1fb733b commit aa7d405
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: php

php:
- '7.1'
- '7.2'
- '7.3'
- '7.4'
- nightly

matrix:
Expand Down Expand Up @@ -31,5 +31,5 @@ script:
- CHANGED_PHP_FILES=`echo "$CHANGED_FILES" | grep "\.php$"`
- if [ -z "$CHANGED_PHP_FILES" ]; then travis_terminate 0; fi;
- echo "$CHANGED_PHP_FILES" | xargs -n1 -P4 php -l -n | (! grep -v "No syntax errors detected" )
- echo "$CHANGED_PHP_FILES" | xargs -n1 -P4 bin/phpcs --standard=PSR1,PSR2 --exclude=Generic.Files.LineLength,PSR1.Methods.CamelCapsMethodName.NotCamelCaps --extensions=php -s
- echo "$CHANGED_PHP_FILES" | xargs -n1 -P4 bin/phpcs --standard=PSR1,PSR2 --exclude=Generic.Files.LineLength,PSR1.Methods.CamelCapsMethodName --extensions=php -s
- bin/phpunit

0 comments on commit aa7d405

Please sign in to comment.