Skip to content

Commit 34d4bab

Browse files
Merge pull request #4 from insenseanalytics/support_v6to8
Support Laravel Versions 6 to 8
2 parents 70d522e + 104a076 commit 34d4bab

File tree

5 files changed

+17
-3758
lines changed

5 files changed

+17
-3758
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
vendor/
2+
composer.lock

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ language: php
33
php:
44
- 7.1
55
- 7.2
6+
- 7.3
7+
- 7.4
68

79
sudo: false
810

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
],
1717
"minimum-stability": "dev",
1818
"require": {
19-
"illuminate/support": "^5.5",
20-
"illuminate/database": "^5.5"
19+
"illuminate/support": "^5.5|^6.0|^7.0|^8.0",
20+
"illuminate/database": "^5.5|^6.0|^7.0|^8.0"
2121
},
2222
"autoload": {
2323
"psr-4": {
@@ -30,9 +30,9 @@
3030
}
3131
},
3232
"require-dev": {
33-
"phpunit/phpunit": "^6.0|^7.0",
34-
"orchestra/testbench": "^3.5",
35-
"doctrine/dbal": "~2.6"
33+
"phpunit/phpunit": "^6.0|^7.0|8.0|^9.0",
34+
"orchestra/testbench": "^3.5|^4.0|^5.0|^6.0",
35+
"doctrine/dbal": "^2.6"
3636
},
3737
"extra": {
3838
"laravel": {

0 commit comments

Comments
 (0)