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

Commit c60f33d

Browse files
hariktfabpot
authored andcommitted
sf4 compatibility
1 parent c87e4c7 commit c60f33d

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

Diff for: .travis.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@ cache:
66

77
language: php
88
php:
9-
- "5.3"
10-
- "5.4"
11-
- "5.5"
12-
- "5.6"
13-
- "7.0"
14-
- "hhvm"
9+
- 7.1
10+
- 7.2
11+
- 7.3
12+
- 7.4snapshot
1513

1614
before_script:
1715
- composer self-update

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
CHANGELOG
22
=========
33

4+
* Next
5+
* Removed unsupported PHP versions ( 5.x series).
6+
* Added support for Symfony 4.x .
7+
48
* 1.1.0 (2015-04-16)
59

610
* #15: Use TerminableInterface

Diff for: composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
}
1515
},
1616
"require": {
17-
"php": ">=5.3.3",
18-
"symfony/http-kernel": "~2.1|~3.0",
19-
"symfony/http-foundation": "~2.1|~3.0"
17+
"php": "^7.1",
18+
"symfony/http-kernel": "~2.1|~3.0|~4.0",
19+
"symfony/http-foundation": "~2.1|~3.0|~4.0"
2020
},
2121
"require-dev": {
22-
"stack/callable-http-kernel": "^1.0@dev",
23-
"silex/silex": "^1.0@dev",
24-
"stack/builder": "^1.0@dev",
25-
"phpunit/phpunit": "@stable"
22+
"stack/callable-http-kernel": "^1.0",
23+
"silex/silex": "^2.0",
24+
"stack/builder": "^1.0",
25+
"phpunit/phpunit": "~7.0"
2626
},
2727
"extra": {
2828
"branch-alias": {

Diff for: tests/functional/UrlMapTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@
66
use Symfony\Component\HttpFoundation\Response;
77
use Stack\UrlMap;
88
use Stack\CallableHttpKernel;
9+
use PHPUnit\Framework\TestCase;
910

1011
/**
1112
* @author Christoph Hochstrasser <[email protected]>
1213
*/
13-
class UrlMapTest extends \PHPUnit_Framework_TestCase
14+
class UrlMapTest extends TestCase
1415
{
1516
public function test()
1617
{

0 commit comments

Comments
 (0)