Skip to content

Commit a339534

Browse files
authored
Merge pull request #15 from php-http/php-upgrade
switch to recent PHP versions
2 parents c075205 + ae2f203 commit a339534

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

.travis.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@ cache:
77
- $HOME/.composer/cache
88

99
php:
10-
- 5.4
11-
- 5.5
12-
- 5.6
13-
- 7.0
14-
- hhvm
10+
- 7.1
11+
- 7.2
12+
- 7.3
1513

1614
env:
1715
global:
@@ -24,7 +22,7 @@ branches:
2422
matrix:
2523
fast_finish: true
2624
include:
27-
- php: 5.4
25+
- php: 7.1
2826
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci"
2927

3028
before_install:

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## 1.1.0 - 2019-11-18
4+
5+
### Added
6+
7+
- Test with PHP 7.1, 7.2, 7.3
8+
9+
### Removed
10+
11+
- PHP 5 support
312

413
## 1.0.0 - 2016-01-26
514

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616
],
1717
"require": {
18-
"php" : "^5.4 || ^7.0"
18+
"php" : "^7.1"
1919
},
2020
"require-dev": {
2121
"phpspec/phpspec": "^2.4",
@@ -32,7 +32,7 @@
3232
},
3333
"extra": {
3434
"branch-alias": {
35-
"dev-master": "1.0-dev"
35+
"dev-master": "1.1-dev"
3636
}
3737
}
3838
}

0 commit comments

Comments
 (0)