Skip to content

Commit 144140c

Browse files
authored
Merge pull request #5 from GrahamCampbell/patch-2
Drop HHVM and support PHP 7
2 parents 0f32bd0 + be72a2d commit 144140c

File tree

3 files changed

+22
-891
lines changed

3 files changed

+22
-891
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.idea
2+
composer.lock
23
vendor

.travis.yml

Lines changed: 21 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,26 @@
11
language: php
2-
php:
3-
- 5.3.3
4-
- 5.3
5-
- 5.4
6-
- 5.5
7-
- 5.6
8-
- hhvm
9-
- hhvm-nightly
102

113
matrix:
12-
allow_failures:
13-
- php: hhvm
14-
- php: hhvm-nightly
4+
include:
5+
- php: 5.3
6+
dist: precise
7+
- php: 5.4
8+
dist: trusty
9+
- php: 5.5
10+
dist: trusty
11+
- php: 5.6
12+
dist: xenial
13+
- php: 7.0
14+
dist: xenial
15+
- php: 7.1
16+
dist: bionic
17+
- php: 7.2
18+
dist: bionic
19+
- php: 7.3
20+
dist: bionic
21+
- php: 7.4
22+
dist: bionic
1523

16-
script:
17-
- vendor/bin/phpunit
24+
before_script: travis_retry composer install
1825

19-
before_script:
20-
- sudo apt-get -qq update > /dev/null
21-
- phpenv rehash > /dev/null
22-
- composer selfupdate --quiet
23-
- composer install --no-interaction --prefer-source --dev
24-
- vendor/bin/phpunit
25-
- composer update --no-interaction --prefer-source --dev
26-
27-
notifications:
28-
irc: "irc.freenode.org#phpdocumentor"
29-
email:
30-
- mike.vanriel@naenius.com
31-
- ashnazg@php.net
32-
- boen.robot@gmail.com
26+
script: vendor/bin/phpunit

0 commit comments

Comments
 (0)