Skip to content

Commit d9d71a2

Browse files
committed
Add support for Laravel 7
1 parent 1eb3d56 commit d9d71a2

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

.travis.yml

+14-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
11
language: php
22
dist: xenial
33

4-
php:
5-
- 7.2
6-
- 7.3
7-
- 7.4
4+
matrix:
5+
include:
6+
- php: 7.2
7+
env: ILLUMINATE_VERSION=7.* TESTBENCH_VERSION=5.*
8+
- php: 7.2
9+
env: ILLUMINATE_VERSION=6.* TESTBENCH_VERSION=4.*
10+
- php: 7.3
11+
env: ILLUMINATE_VERSION=7.* TESTBENCH_VERSION=5.*
12+
- php: 7.3
13+
env: ILLUMINATE_VERSION=6.* TESTBENCH_VERSION=4.*
14+
- php: 7.4
15+
env: ILLUMINATE_VERSION=7.* TESTBENCH_VERSION=5.*
16+
- php: 7.4
17+
env: ILLUMINATE_VERSION=6.* TESTBENCH_VERSION=4.*
818

919
services:
1020
- mysql
1121

12-
env:
13-
- ILLUMINATE_VERSION=6.* TESTBENCH_VERSION=4.*
14-
1522
before_script:
1623
- mysql -e "create database IF NOT EXISTS testing;" -uroot;
1724

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
"php": "^7.2"
2626
},
2727
"require-dev": {
28-
"orchestra/testbench": "~4.0",
29-
"phpunit/phpunit": "~8.0",
28+
"orchestra/testbench": "^4.0|^5.0",
29+
"phpunit/phpunit": "^8.0|^9.0",
3030
"spatie/laravel-translatable": "^4.2"
3131
},
3232
"autoload": {

0 commit comments

Comments
 (0)