Skip to content

Commit

Permalink
Removing PHP 5.3.3 from Travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
SocalNick committed Jan 16, 2015
1 parent cadf3f0 commit c98345b
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
Expand Up @@ -10,8 +10,8 @@ before_install:
- curl -sS https://getcomposer.org/installer | php

before_script:
- phpversion=$(phpenv version); if [[ $phpversion =~ 5\.3\.3.* ]]; then php composer.phar install --dev --prefer-source; else php composer.phar install --dev; fi;
- php composer.phar install --dev

script:
- (cd test ; phpunit -c phpunit.xml)
- phpversion=$(phpenv version); if [[ $phpversion =~ 5\.3\.3.* ]]; then output=''; else output=$(php php-cs-fixer.phar fix -v --dry-run .); fi; if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi;
- output=$(php php-cs-fixer.phar fix -v --dry-run .); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi;

0 comments on commit c98345b

Please sign in to comment.