Skip to content

Commit 6b9401e

Browse files
author
Justin Hayes
authored
Merge pull request #7 from jshayes/change/support-laravel-5.8
Support Laravel 5.8
2 parents 02085a1 + 6a97cf7 commit 6b9401e

File tree

4 files changed

+17
-4146
lines changed

4 files changed

+17
-4146
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
/vendor
22
/node_modules
3+
.phpunit.result.cache
4+
composer.lock

.travis.yml

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
language: php
22

3-
php:
4-
- 7.1
3+
matrix:
4+
include:
5+
- php: 7.1
6+
env: ILLUMINATE_VERSION=5.7.*
7+
- php: 7.1
8+
env: ILLUMINATE_VERSION=5.8.*
9+
- php: 7.2
10+
env: ILLUMINATE_VERSION=5.7.*
11+
- php: 7.2
12+
env: ILLUMINATE_VERSION=5.8.*
13+
- php: 7.3
14+
env: ILLUMINATE_VERSION=5.7.*
15+
- php: 7.3
16+
env: ILLUMINATE_VERSION=5.8.*
517

618
script:
719
- composer install

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"require": {
1212
"guzzlehttp/guzzle": "^6.3",
1313
"illuminate/support": "^5.4",
14-
"phpunit/phpunit": "~6.0|~7.0"
14+
"phpunit/phpunit": "~6.0|~7.0|~8.0"
1515
},
1616
"require-dev": {
1717
"squizlabs/php_codesniffer": "^3.0",

0 commit comments

Comments
 (0)