Skip to content

Commit 3556153

Browse files
committed
drop support for PHP < 7.1 and HHVM
1 parent 93c8529 commit 3556153

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

.travis.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,15 @@ env:
1010
global:
1111
- deps=""
1212

13-
php:
14-
- 5.4
15-
- 5.5
16-
- 5.6
17-
- 7.0
18-
- 7.1
19-
- 7.2
20-
- hhvm
21-
2213
matrix:
2314
fast_finish: true
2415
include:
25-
- php: 5.3
26-
dist: precise
16+
- php: 7.1
17+
- php: 7.2
2718
env: deps="low"
2819

2920
before_install:
30-
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi
21+
- phpenv config-rm xdebug.ini
3122
- composer self-update
3223

3324
install:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ CHANGELOG
44
3.0.0
55
-----
66

7+
* Dropped support for PHP < 7.1 as well as HHVM.
78
* The `Object` class was renamed to `StatementObject` for compatibility with PHP
89
7.2.
910

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": "^5.3 || ^7.0",
15+
"php": "^7.1",
1616
"php-xapi/exception": "~0.1",
1717
"ramsey/uuid": "^2.9 || ^3.0"
1818
},

0 commit comments

Comments
 (0)