From 8d538a6c2759c41f67183d7ce58a0662fd4735b3 Mon Sep 17 00:00:00 2001 From: Lucas Michot Date: Fri, 1 Sep 2023 01:54:35 +0300 Subject: [PATCH] Bump to laravel/socialite:^5.2 and phpunit/phpunit:^9.0 (#222) --- composer.json | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/composer.json b/composer.json index 8427d7f..e27cae1 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,7 @@ { "name": "socialiteproviders/manager", "description": "Easily add new or override built-in providers in Laravel Socialite.", + "license": "MIT", "keywords": [ "laravel", "manager", @@ -8,8 +9,6 @@ "providers", "socialite" ], - "homepage": "https://socialiteproviders.com", - "license": "MIT", "authors": [ { "name": "Andy Wendt", @@ -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", - "laravel/socialite": "~5.0" + "illuminate/support": "^6.20 || ^7.0 || ^8.0 || ^9.0 || ^10.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/" @@ -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" + ] + } } }