Skip to content

Commit 6c82f44

Browse files
authored
Merge pull request #150 from clue-labs/php
First class support for PHP 5.3 through PHP 7 and HHVM
2 parents 9159d94 + 918d8fa commit 6c82f44

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

.travis.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
language: php
2+
23
php:
3-
- 5.6
4-
- 5.5
5-
- 5.4
64
- 5.3
5+
- 5.4
6+
- 5.5
7+
- 5.6
8+
- 7
79
- hhvm
10+
11+
sudo: false
12+
813
install:
9-
- composer install --prefer-source --no-interaction
14+
- composer install --no-interaction
15+
1016
script:
1117
- php vendor/bin/phpunit --coverage-text

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"psr-4": {"Fhaculty\\Graph\\": "src/"}
1010
},
1111
"require": {
12-
"php": ">=5.3.0"
12+
"php": "^7.0 || ^5.3"
1313
},
1414
"require-dev": {
1515
"phpunit/phpunit": "~4.0"

0 commit comments

Comments
 (0)