This repository was archived by the owner on Jan 21, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +39
-12
lines changed Expand file tree Collapse file tree 6 files changed +39
-12
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,10 @@ cache:
1010matrix :
1111 fast_finish : true
1212 include :
13- - php : 5.5
1413 - php : 5.6
14+ - php : 7
1515 env :
1616 - EXECUTE_CS_CHECK=true
17- - php : 7
1817 - php : hhvm
1918 allow_failures :
2019 - php : hhvm
Original file line number Diff line number Diff line change 22
33All notable changes to this project will be documented in this file, in reverse chronological order by release.
44
5+ ## 1.2.0 - TBD
6+
7+ ### Added
8+
9+ - Nothing.
10+
11+ ### Deprecated
12+
13+ - Nothing.
14+
15+ ### Removed
16+
17+ - This release removes support for PHP 5.5.
18+
19+ ### Fixed
20+
21+ - [ #7 ] ( https://github.com/zendframework/zend-expressive-zendrouter/pull/7 )
22+ updates the zend-router dependency to ` ^3.0 ` ; this also required changing
23+ which routes and routers are imported internally to use the new namespace
24+ introduced in that version. The changes should have no effect on existing
25+ code, except that they will result in dependency updates.
26+
527## 1.1.1 - TBD
628
729### Added
Original file line number Diff line number Diff line change 1818 }
1919 },
2020 "require" : {
21- "php" : " ^5.5 || ^7.0" ,
21+ "php" : " ^5.6 || ^7.0" ,
2222 "psr/http-message" : " ^1.0" ,
23- "zendframework/zend-expressive-router" : " ^1.0 " ,
24- "zendframework/zend-router" : " ^2.5 " ,
25- "zendframework/zend-psr7bridge" : " ^0.2.0 "
23+ "zendframework/zend-expressive-router" : " ^1.2 " ,
24+ "zendframework/zend-router" : " ^3.0 " ,
25+ "zendframework/zend-psr7bridge" : " ^0.2.2 "
2626 },
2727 "require-dev" : {
28- "phpunit/phpunit" : " ^4.7 " ,
29- "squizlabs/php_codesniffer" : " ^2.3 "
28+ "phpunit/phpunit" : " ^4.8 " ,
29+ "squizlabs/php_codesniffer" : " ^2.6.2 "
3030 },
3131 "autoload" : {
3232 "psr-4" : {
Original file line number Diff line number Diff line change 99 <!-- inherit rules from: -->
1010 <rule ref =" PSR2" />
1111 <rule ref =" Generic.Arrays.DisallowLongArraySyntax" />
12+ <rule ref =" Generic.Formatting.SpaceAfterNot" />
13+ <rule ref =" Squiz.WhiteSpace.OperatorSpacing" >
14+ <properties >
15+ <property name =" ignoreNewlines" value =" true" />
16+ </properties >
17+ </rule >
1218 <rule ref =" Squiz.WhiteSpace.SuperfluousWhitespace" >
1319 <properties >
1420 <property name =" ignoreBlankLines" value =" false" />
Original file line number Diff line number Diff line change 1111
1212use Psr \Http \Message \ServerRequestInterface as PsrRequest ;
1313use Zend \Expressive \Exception ;
14- use Zend \Mvc \ Router \Http \TreeRouteStack ;
15- use Zend \Mvc \ Router \RouteMatch ;
14+ use Zend \Router \Http \TreeRouteStack ;
15+ use Zend \Router \RouteMatch ;
1616use Zend \Psr7Bridge \Psr7ServerRequest ;
1717
1818/**
Original file line number Diff line number Diff line change 1616use Zend \Expressive \Router \RouteResult ;
1717use Zend \Expressive \Router \ZendRouter ;
1818use Zend \Http \Request as ZendRequest ;
19- use Zend \Mvc \ Router \Http \TreeRouteStack ;
20- use Zend \Mvc \ Router \RouteMatch ;
19+ use Zend \Router \Http \TreeRouteStack ;
20+ use Zend \Router \RouteMatch ;
2121
2222class ZendRouterTest extends TestCase
2323{
You can’t perform that action at this time.
0 commit comments