Skip to content

Commit

Permalink
fix: added phpunit version constrain for higher php versions (#87)
Browse files Browse the repository at this point in the history
fix: added phpunit version constrain for higher php versions
  • Loading branch information
prisis authored Jun 26, 2019
2 parents 6d44163 + c6d2fb7 commit 5b0254f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,21 +47,21 @@ matrix:
- php: 7.1
env: SYMFONY_PHPUNIT_VERSION="6.3"
- php: 7.2
env: COVERAGE=true TEST_COMMAND="composer test-ci"
env: COVERAGE=true TEST_COMMAND="composer test-ci" SYMFONY_PHPUNIT_VERSION="6.3"
- php: 7.2
env: COVERAGE=true TEST_COMMAND="composer test-ci"
env: COVERAGE=true TEST_COMMAND="composer test-ci" SYMFONY_PHPUNIT_VERSION="6.3"

# Test LTS versions
- php: 7.3
env: DEPENDENCIES="dunglas/symfony-lock:^2"
env: DEPENDENCIES="dunglas/symfony-lock:^2" SYMFONY_PHPUNIT_VERSION="6.3"
- php: 7.3
env: DEPENDENCIES="dunglas/symfony-lock:^3"
env: DEPENDENCIES="dunglas/symfony-lock:^3" SYMFONY_PHPUNIT_VERSION="6.3"
- php: 7.3
env: DEPENDENCIES="dunglas/symfony-lock:^4"
env: DEPENDENCIES="dunglas/symfony-lock:^4" SYMFONY_PHPUNIT_VERSION="6.3"

# Latest commit to master
- php: 7.3
env: STABILITY="dev"
env: STABILITY="dev" SYMFONY_PHPUNIT_VERSION="6.3"

allow_failures:
# dev stability is allowed to fail.
Expand Down
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.

## 1.3.1

### Fixed
- Fixed container compilation error when using Flysystem #86

## 1.3.0

### Added
Expand Down

0 comments on commit 5b0254f

Please sign in to comment.