Skip to content

Commit 812a6a6

Browse files
committed
Fix tests and support Laravel 6
1 parent d965b74 commit 812a6a6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
language: php
22

33
php:
4-
- 5.5
54
- 5.6
6-
- 7.0
5+
- 7.1
6+
- 7.2
7+
- 7.3
78

89
before_script:
9-
- composer self-update
10-
- composer install --prefer-source --no-interaction
10+
- curl -s http://getcomposer.org/installer | php
11+
- php composer.phar install --dev
1112

12-
script:
13-
- phpunit
13+
script: php ./vendor/bin/phpunit

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
}
1717
],
1818
"require": {
19-
"php": ">=5.5.9",
20-
"illuminate/support": "~5.1",
21-
"illuminate/database": "~5.1"
19+
"php": ">=5.6",
20+
"illuminate/support": "~5.1|~6.0",
21+
"illuminate/database": "~5.1|~6.0"
2222
},
2323
"require-dev": {
2424
"phpunit/phpunit": "^4.8",

0 commit comments

Comments
 (0)