Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to laravel/socialite:^5.2 and phpunit/phpunit:^9.0 #222

Merged
merged 3 commits into from
Aug 31, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{
"name": "socialiteproviders/manager",
"description": "Easily add new or override built-in providers in Laravel Socialite.",
"license": "MIT",
"keywords": [
"laravel",
"manager",
"oauth",
"providers",
"socialite"
],
"homepage": "https://socialiteproviders.com",
"license": "MIT",
"authors": [
{
"name": "Andy Wendt",
Expand All @@ -29,25 +28,21 @@
"homepage": "https://atymic.dev"
}
],
"homepage": "https://socialiteproviders.com",
"support": {
"issues": "https://github.com/socialiteproviders/manager/issues",
"source": "https://github.com/socialiteproviders/manager"
},
"require": {
"php": "^8.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

May as well drop versions that dont support php 8 at least?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good idea, see 1bed9a3

"laravel/socialite": "~5.0"
"laravel/socialite": "^5.2"
},
"require-dev": {
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^6.0 || ^9.0"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"SocialiteProviders\\Manager\\ServiceProvider"
]
}
"phpunit/phpunit": "^9.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"SocialiteProviders\\Manager\\": "src/"
Expand All @@ -58,9 +53,14 @@
"SocialiteProviders\\Manager\\Test\\": "tests/"
}
},
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/socialiteproviders/manager/issues",
"source": "https://github.com/socialiteproviders/manager"
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"SocialiteProviders\\Manager\\ServiceProvider"
]
}
}
}