Skip to content

Commit 0f8f85a

Browse files
authored
Fixes travis, adds PHP 7.1, and removes HHVM (#160)
1 parent 2261c1c commit 0f8f85a

File tree

4 files changed

+8
-26
lines changed

4 files changed

+8
-26
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ vendor
22
phpunit.phar
33
phpunit.phar.asc
44
composer.phar
5+
composer.lock

.travis.yml

+3-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@ php:
66
- 5.5
77
- 5.6
88
- 7.0
9-
- hhvm
9+
- 7.1
1010

1111
sudo: false
1212

13-
before_script:
14-
- wget -nc http://getcomposer.org/composer.phar
15-
- php composer.phar install
16-
17-
script: phpunit --configuration phpunit.xml.dist
13+
before_script: composer install
14+
script: phpunit

composer.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,8 @@
2323
"Firebase\\JWT\\": "src"
2424
}
2525
},
26-
"minimum-stability": "dev"
26+
"minimum-stability": "dev",
27+
"require-dev": {
28+
"phpunit/phpunit": " 4.8.35"
29+
}
2730
}

composer.lock

-19
This file was deleted.

0 commit comments

Comments
 (0)