Skip to content

Commit 79fc5f7

Browse files
Add Support for Laravel 7 (#17)
Add Support for Laravel 7
1 parent eed5c00 commit 79fc5f7

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

.travis.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
language: php
2-
sudo: false
3-
dist: trusty
2+
os: linux
3+
dist: bionic
44

55
matrix:
66
fast_finish: true
77
include:
88
- php: 7.2
99
env: LARAVEL=5.8.* ORCHESTRA=3.8.*
10-
- php: 7.2
11-
env: LARAVEL=^6.0 ORCHESTRA=^4.0 COVERAGE=1
1210
- php: 7.3
1311
env: LARAVEL=^6.0 ORCHESTRA=^4.0
12+
- php: 7.4
13+
env: LARAVEL=^6.0 ORCHESTRA=^4.0
14+
- php: 7.3
15+
env: LARAVEL=^7.0 ORCHESTRA=^5.0
16+
- php: 7.4
17+
env: LARAVEL=^7.0 ORCHESTRA=^5.0 COVERAGE=1
1418

1519
allow_failures:
1620
- env: COVERAGE=1

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"homepage": "https://github.com/richan-fongdasen/laravel-i18n",
77
"keywords": [
88
"laravel",
9-
"laravel-5-package",
9+
"laravel-package",
1010
"laravel-routes",
1111
"eloquent",
1212
"routes",
@@ -28,16 +28,16 @@
2828
},
2929
"require": {
3030
"php": "^7.2",
31-
"illuminate/database": "5.8.*|^6.0",
32-
"illuminate/support": "5.8.*|^6.0",
31+
"illuminate/database": "5.8.*|^6.0|^7.0",
32+
"illuminate/support": "5.8.*|^6.0|^7.0",
3333
"nesbot/carbon": "^2.0"
3434
},
3535
"require-dev": {
36-
"phpunit/phpunit": "^7.5|^8.0",
37-
"orchestra/testbench": "~3.8|~4.0",
38-
"orchestra/database": "~3.8|~4.0",
3936
"fzaninotto/faker": "^1.4",
40-
"mockery/mockery": "^1.0"
37+
"mockery/mockery": "^1.0",
38+
"orchestra/testbench": "~3.8|~4.0|~5.0",
39+
"orchestra/database": "~3.8|~4.0|~5.0",
40+
"phpunit/phpunit": "^7.5|^8.0|^9.0"
4141
},
4242
"config": {
4343
"sort-packages": true

0 commit comments

Comments
 (0)