Skip to content

Commit 7a0f50c

Browse files
authored
Drop Laravel 7 and PHP 7.2 support (#9)
1 parent 3b2fe48 commit 7a0f50c

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,8 @@ jobs:
1515
strategy:
1616
fail-fast: true
1717
matrix:
18-
php: [7.2, 7.3, 7.4]
19-
laravel: ["7.*", "8.*"]
20-
exclude:
21-
- laravel: "8.*"
22-
php: 7.2
18+
php: [7.3, 7.4]
19+
laravel: ["8.*"]
2320

2421
steps:
2522
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ as well as the community driven [Socialite Providers](https://socialiteproviders
2727

2828
**requirements**
2929

30-
`oneofftech/laravel-connect-identity` requires **Laravel >= 7.20** and **PHP >= 7.2**.
30+
`oneofftech/laravel-connect-identity` requires **Laravel >= 8.0** and **PHP >= 7.3**.
3131

3232
> **The package is currently a Work In Progress.** The api might change without notice so it is not yet
3333
suitable for production environments.

composer.json

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

0 commit comments

Comments
 (0)