Skip to content

Commit dace564

Browse files
committed
Support legacy PHP 5.3 through PHP 7.2 and HHVM
1 parent 1607b87 commit dace564

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

.travis.yml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
11
language: php
22

33
php:
4-
- 5.3
4+
# - 5.3 # requires old distro, see below
55
- 5.4
66
- 5.5
77
- 5.6
8-
- 7
9-
- hhvm
8+
- 7.0
9+
- 7.1
10+
- 7.2
11+
- hhvm # ignore errors, see below
12+
13+
# lock distro so future defaults will not break the build
14+
dist: trusty
15+
16+
matrix:
17+
include:
18+
- php: 5.3
19+
dist: precise
20+
allow_failures:
21+
- php: hhvm
22+
23+
sudo: false
1024

1125
install:
1226
- composer install --no-interaction

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,11 @@ The recommended way to install this library is [through Composer](http://getcomp
135135
$ composer require clue/multicast-react:~1.0
136136
```
137137

138+
This project aims to run on any platform and thus does not require any PHP
139+
extensions and supports running on legacy PHP 5.3 through current PHP 7+ and
140+
HHVM.
141+
It's *highly recommended to use PHP 7+* for this project.
142+
138143
## Tests
139144

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

0 commit comments

Comments
 (0)