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

Commit 8833877

Browse files
committed
Merge branch 'feature/517-revert' into develop
Close #534
2 parents f942ad3 + 9a01a1c commit 8833877

28 files changed

+366
-349
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,23 @@ env:
1010
global:
1111
- COMPOSER_ARGS="--no-interaction"
1212
- COVERAGE_DEPS="satooshi/php-coveralls"
13-
- LEGACY_DEPS="phpunit/phpunit"
1413

1514
matrix:
1615
include:
1716
- php: 5.6
1817
env:
1918
- DEPS=lowest
19+
- LEGACY_DEPS="phpunit/phpunit malukenho/docheader"
2020
- php: 5.6
2121
env:
2222
- DEPS=locked
23+
- LEGACY_DEPS="phpunit/phpunit malukenho/docheader"
2324
- CS_CHECK=true
2425
- TEST_COVERAGE=true
2526
- php: 5.6
2627
env:
2728
- DEPS=latest
29+
- LEGACY_DEPS="phpunit/phpunit malukenho/docheader"
2830
- php: 7
2931
env:
3032
- DEPS=lowest
@@ -61,7 +63,7 @@ before_install:
6163

6264
install:
6365
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
64-
- if [[ $TRAVIS_PHP_VERSION =~ ^5.6 ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
66+
- if [[ $LEGACY_DEPS != '' ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
6567
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
6668
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
6769
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi

CHANGELOG.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@ All notable changes to this project will be documented in this file, in reverse
66

77
### Added
88

9-
- [#517](https://github.com/zendframework/zend-expressive/pull/517) adds
10-
support for http-interop/http-middleware 0.5.0 via a polyfill provided by the
11-
package webimpress/http-middleware-compatibility. Essentially, this means you
12-
can drop this package into an application targeting either the 0.4.1 or 0.5.0
13-
versions of http-middleware, and it will "just work".
9+
- Nothing.
1410

1511
### Changed
1612

composer.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,16 @@
2424
"dev-develop": "2.1-dev"
2525
}
2626
},
27-
"config": {
28-
"sort-packages": true
29-
},
3027
"require": {
3128
"php": "^5.6 || ^7.0",
3229
"fig/http-message-util": "^1.1.2",
3330
"http-interop/http-middleware": "^0.4.1",
3431
"psr/container": "^1.0",
3532
"psr/http-message": "^1.0.1",
36-
"webimpress/http-middleware-compatibility": "^0.1.1",
3733
"zendframework/zend-diactoros": "^1.3.10",
38-
"zendframework/zend-expressive-router": "^2.2",
34+
"zendframework/zend-expressive-router": "^2.1",
3935
"zendframework/zend-expressive-template": "^1.0.4",
40-
"zendframework/zend-stratigility": "^2.1"
36+
"zendframework/zend-stratigility": "^2.0.1"
4137
},
4238
"require-dev": {
4339
"filp/whoops": "^2.1.6 || ^1.1.10",

0 commit comments

Comments
 (0)