Skip to content

Commit 26b7c98

Browse files
authored
Laravel 8 support (#5)
1 parent 515ce4e commit 26b7c98

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ jobs:
1616
fail-fast: true
1717
matrix:
1818
php: [7.2, 7.3, 7.4]
19-
laravel: ["7.*"]
19+
laravel: ["7.*", "8.*"]
20+
exclude:
21+
- laravel: "8.*"
22+
php: 7.2
2023

2124
steps:
2225
- uses: actions/checkout@v2

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@
1818
],
1919
"require": {
2020
"php": ">=7.2.5",
21-
"illuminate/auth": "^7.0",
22-
"illuminate/console": "^7.0",
23-
"illuminate/encryption": "^7.0",
24-
"illuminate/support": "^7.0",
25-
"illuminate/view": "^7.0",
26-
"laravel/socialite": "^4.4",
27-
"socialiteproviders/gitlab": "^3.1",
21+
"illuminate/auth": "^7.0|^8.0",
22+
"illuminate/console": "^7.0|^8.0",
23+
"illuminate/encryption": "^7.0|^8.0",
24+
"illuminate/support": "^7.0|^8.0",
25+
"illuminate/view": "^7.0|^8.0",
26+
"laravel/socialite": "^4.4|^5.0",
27+
"socialiteproviders/gitlab": "^3.1|^4.0",
2828
"socialiteproviders/dropbox": "^4.1",
29-
"laravel/ui": "^2.1"
29+
"laravel/ui": "^2.1|^3.0"
3030
},
3131
"require-dev": {
3232
"fzaninotto/faker": "~1.9.1",
3333
"mockery/mockery": "^1.3.1",
34-
"phpunit/phpunit": "^8.5|^9.0",
35-
"orchestra/testbench": "^5.0",
34+
"phpunit/phpunit": "^8.5|^9.3",
35+
"orchestra/testbench": "^5.0|^6.0",
3636
"friendsofphp/php-cs-fixer": "^2.16"
3737
},
3838
"autoload": {

0 commit comments

Comments
 (0)