Skip to content

Commit c212b3f

Browse files
committed
Support legacy PHP 5.3 through PHP 7.2 and HHVM
1 parent 0efc611 commit c212b3f

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

.travis.yml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,25 @@
11
language: php
22
php:
3-
- 5.3
3+
# - 5.3 # requires old distro, see below
4+
- 5.4
5+
- 5.5
46
- 5.6
5-
- hhvm
7+
- 7.0
8+
- 7.1
9+
- 7.2
10+
- hhvm # ignore errors, see below
11+
12+
# lock distro so future defaults will not break the build
13+
dist: trusty
14+
15+
matrix:
16+
include:
17+
- php: 5.3
18+
dist: precise
19+
allow_failures:
20+
- php: hhvm
21+
22+
sudo: false
623

724
install:
825
- composer install --no-interaction

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ The recommended way to install this library is [through composer](http://getcomp
6060
}
6161
```
6262

63+
This project aims to run on any platform and thus does not require any PHP
64+
extensions and supports running on legacy PHP 5.3 through current PHP 7+ and
65+
HHVM.
66+
It's *highly recommended to use PHP 7+* for this project.
67+
6368
## Tests
6469

6570
To run the test suite, you first need to clone this repo and then install all

0 commit comments

Comments
 (0)