From 2df82a1e216db61e9c1903911218fa31982d1e67 Mon Sep 17 00:00:00 2001 From: Shift Date: Mon, 30 Jan 2023 23:54:48 +0000 Subject: [PATCH] Bump dependencies for Laravel 10 --- composer.json | 84 +++++++++++++++++++++++++++------------------------ 1 file changed, 44 insertions(+), 40 deletions(-) diff --git a/composer.json b/composer.json index 105c8dc..c342ea9 100644 --- a/composer.json +++ b/composer.json @@ -1,43 +1,47 @@ { - "name": "mckenziearts/laravel-notify", - "description": "Flexible flash notifications for Laravel", - "license": "MIT", - "authors": [ - { - "name": "Arthur Monney", - "email": "monneylobe@gmail.com", - "homepage": "https://twitter.com/MonneyArthur", - "role" : "Developer" - } - ], - "homepage": "https://github.com/mckenziearts/laravel-notify", - "keywords": ["Laravel", "laravel-notify", "notification"], - "require": { - "php": ">=7.4", - "illuminate/support": "~7.0|~8.0|~9.0" - }, - "require-dev": { - "mockery/mockery": "^1.0", - "phpunit/phpunit": "^8.0|^9.0" - }, - "autoload": { - "psr-4": { - "Mckenziearts\\Notify\\": "src/" + "name": "mckenziearts/laravel-notify", + "description": "Flexible flash notifications for Laravel", + "license": "MIT", + "authors": [ + { + "name": "Arthur Monney", + "email": "monneylobe@gmail.com", + "homepage": "https://twitter.com/MonneyArthur", + "role": "Developer" + } + ], + "homepage": "https://github.com/mckenziearts/laravel-notify", + "keywords": [ + "Laravel", + "laravel-notify", + "notification" + ], + "require": { + "php": ">=7.4", + "illuminate/support": "~7.0|~8.0|~9.0|^10.0" }, - "files": [ - "src/helpers.php" - ] - }, - "extra": { - "laravel": { - "providers": [ - "Mckenziearts\\Notify\\LaravelNotifyServiceProvider" - ], - "aliases": { - "Notify": "Mckenziearts\\Notify\\Facades\\LaravelNotify" - } - } - }, - "minimum-stability": "dev", - "prefer-stable": true + "require-dev": { + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^8.0|^9.0" + }, + "autoload": { + "psr-4": { + "Mckenziearts\\Notify\\": "src/" + }, + "files": [ + "src/helpers.php" + ] + }, + "extra": { + "laravel": { + "providers": [ + "Mckenziearts\\Notify\\LaravelNotifyServiceProvider" + ], + "aliases": { + "Notify": "Mckenziearts\\Notify\\Facades\\LaravelNotify" + } + } + }, + "minimum-stability": "dev", + "prefer-stable": true }