Skip to content
This repository was archived by the owner on Jan 21, 2020. It is now read-only.

Commit e76e6ab

Browse files
committed
Merge branch 'release/3.1.1'
2 parents 759a875 + 4f2b9c6 commit e76e6ab

22 files changed

+344
-278
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/.phpunit.result.cache
12
/clover.xml
23
/coveralls-upload.json
34
/phpunit.xml

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ matrix:
1717
- php: 7.1
1818
env:
1919
- DEPS=locked
20+
- LEGACY_DEPS="phpunit/phpunit"
2021
- CS_CHECK=true
2122
- TEST_COVERAGE=true
2223
- php: 7.1
@@ -45,9 +46,10 @@ before_install:
4546
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
4647

4748
install:
48-
- travis_retry composer install $COMPOSER_ARGS
49+
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
50+
- if [[ $LEGACY_DEPS != '' ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
4951
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
50-
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
52+
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update $COMPOSER_ARGS --prefer-lowest --prefer-stable ; fi
5153
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
5254
- stty cols 120 && composer show
5355

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented in this file, in reverse chronological order by release.
44

5-
## 3.1.1 - TBD
5+
## 3.1.1 - 2019-10-16
66

77
### Added
88

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015-2018, Zend Technologies USA, Inc.
1+
Copyright (c) 2015-2019, Zend Technologies USA, Inc.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"issues": "https://github.com/zendframework/zend-expressive-router/issues",
1717
"source": "https://github.com/zendframework/zend-expressive-router",
1818
"rss": "https://github.com/zendframework/zend-expressive-router/releases.atom",
19-
"slack": "https://zendframework-slack.herokuapp.com",
19+
"chat": "https://zendframework-slack.herokuapp.com",
2020
"forum": "https://discourse.zendframework.com/c/questions/expressive"
2121
},
2222
"require": {
@@ -28,7 +28,7 @@
2828
},
2929
"require-dev": {
3030
"malukenho/docheader": "^0.1.6",
31-
"phpunit/phpunit": "^7.0.2",
31+
"phpunit/phpunit": "^7.5.16 || ^8.4.1",
3232
"zendframework/zend-coding-standard": "~1.0.0"
3333
},
3434
"suggest": {

0 commit comments

Comments
 (0)