Skip to content

Commit 5b0254f

Browse files
authored
fix: added phpunit version constrain for higher php versions (#87)
fix: added phpunit version constrain for higher php versions
2 parents 6d44163 + c6d2fb7 commit 5b0254f

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.travis.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -47,21 +47,21 @@ matrix:
4747
- php: 7.1
4848
env: SYMFONY_PHPUNIT_VERSION="6.3"
4949
- php: 7.2
50-
env: COVERAGE=true TEST_COMMAND="composer test-ci"
50+
env: COVERAGE=true TEST_COMMAND="composer test-ci" SYMFONY_PHPUNIT_VERSION="6.3"
5151
- php: 7.2
52-
env: COVERAGE=true TEST_COMMAND="composer test-ci"
52+
env: COVERAGE=true TEST_COMMAND="composer test-ci" SYMFONY_PHPUNIT_VERSION="6.3"
5353

5454
# Test LTS versions
5555
- php: 7.3
56-
env: DEPENDENCIES="dunglas/symfony-lock:^2"
56+
env: DEPENDENCIES="dunglas/symfony-lock:^2" SYMFONY_PHPUNIT_VERSION="6.3"
5757
- php: 7.3
58-
env: DEPENDENCIES="dunglas/symfony-lock:^3"
58+
env: DEPENDENCIES="dunglas/symfony-lock:^3" SYMFONY_PHPUNIT_VERSION="6.3"
5959
- php: 7.3
60-
env: DEPENDENCIES="dunglas/symfony-lock:^4"
60+
env: DEPENDENCIES="dunglas/symfony-lock:^4" SYMFONY_PHPUNIT_VERSION="6.3"
6161

6262
# Latest commit to master
6363
- php: 7.3
64-
env: STABILITY="dev"
64+
env: STABILITY="dev" SYMFONY_PHPUNIT_VERSION="6.3"
6565

6666
allow_failures:
6767
# dev stability is allowed to fail.

Changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

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

5+
## 1.3.1
6+
7+
### Fixed
8+
- Fixed container compilation error when using Flysystem #86
9+
510
## 1.3.0
611

712
### Added

0 commit comments

Comments
 (0)