Skip to content

Commit d506830

Browse files
taaiAlexVanderbist
authored andcommitted
Add Laravel 5.8 support (#177)
* Add Laravel 5.8 support This PR addresses #176 I'm pretty sure this works. Laravel 5.8 is not that different from 5.7. 😉 * Update .travis.yml * Update composer.json Oh, this is why Travis CI didn't run! 😁
1 parent c2a81c5 commit d506830

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,24 @@ matrix:
1515
env: LARAVEL='5.6.*' TESTBENCH='3.6.*'
1616
- php: 7.1
1717
env: LARAVEL='5.7.*' TESTBENCH='3.7.*'
18+
- php: 7.1
19+
env: LARAVEL='5.8.*' TESTBENCH='3.8.*'
1820
- php: 7.2
1921
env: LARAVEL='5.5.*' TESTBENCH='3.5.*'
2022
- php: 7.2
2123
env: LARAVEL='5.6.*' TESTBENCH='3.6.*'
2224
- php: 7.2
2325
env: LARAVEL='5.7.*' TESTBENCH='3.7.*'
26+
- php: 7.2
27+
env: LARAVEL='5.8.*' TESTBENCH='3.8.*'
2428
- php: 7.3
2529
env: LARAVEL='5.5.*' TESTBENCH='3.5.*'
2630
- php: 7.3
2731
env: LARAVEL='5.6.*' TESTBENCH='3.6.*'
2832
- php: 7.3
2933
env: LARAVEL='5.7.*' TESTBENCH='3.7.*'
34+
- php: 7.3
35+
env: LARAVEL='5.8.*' TESTBENCH='3.8.*'
3036

3137
before_install:
3238
- travis_retry composer self-update

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
],
1818
"require": {
1919
"php": "^7.1",
20-
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0",
21-
"illuminate/http": "~5.5.0|~5.6.0|~5.7.0",
22-
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0"
20+
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
21+
"illuminate/http": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
22+
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0"
2323
},
2424
"require-dev": {
2525
"phpunit/phpunit": "^6.1|^7.0",
26-
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0"
26+
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0|~3.8.0"
2727
},
2828
"autoload": {
2929
"psr-4": {

0 commit comments

Comments
 (0)