Skip to content

Commit

Permalink
Travis: PHP 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vasa-c committed Apr 22, 2017
1 parent ebbeb48 commit 6c11027
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ matrix:
env: CHECKS=yes
- php: 5.5
- php: 5.6
- php: 7
- php: 7.0
- php: 7.1
- php: hhvm

sudo: false
Expand All @@ -30,8 +31,7 @@ before_install:
- if [ "$XDEBUG_ENABLED" = "yes" ]; then mv $XDEBUG_INI xdebug.ini; fi;
# Travis container may contain outdated version of composer
- composer self-update
# Checks if the system phpunit is broken (sometimes it happens). Then install phpunit from composer.
- phpunit --version || PHPUNIT_BROKEN="yes"

# Info
- if [ "$CHECKS" = "yes" ]; then echo "Checks mode"; else echo "Normal mode"; fi;
- if [ "$XDEBUG_ENABLED" = "yes" ]; then echo "XDebug is supported"; else echo "XDebug is not supported"; fi;
Expand All @@ -41,8 +41,8 @@ install:
# Composer can not used dist (github required the auth token). Just specify prefer-source.
- composer install --prefer-source
# In order not to litter in the local dev-version specify checks-packages here instead composer.json
- if [ "$PHPUNIT_BROKEN" = "yes" ]; then composer require phpunit/phpunit --prefer-source; fi;
- if [ "$PHPUNIT_BROKEN" = "yes" ]; then PU="php vendor/bin/phpunit"; else PU=phpunit; fi;
- composer require phpunit/phpunit=4.8.35 --prefer-source
- PU="php vendor/bin/phpunit"
- if [ "$CHECKS" = "yes" ]; then composer require squizlabs/php_codesniffer="~2.3" --prefer-source; fi;
- if [ "$CHECKS" = "yes" ]; then composer require satooshi/php-coveralls --dev --prefer-source; fi;
# Generate the coveralls config (not to keep it in the repo)
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### dev

* Travis: PHP 7.1

### 0.0.2 (02.04.2016)

* Fixed #4: changeGroup() changes owner instead group
Expand Down

0 comments on commit 6c11027

Please sign in to comment.