Skip to content

Commit

Permalink
Bump dependencies for Laravel 11 (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
laravel-shift authored May 23, 2024
1 parent f23b2aa commit eafcd81
Showing 1 changed file with 46 additions and 42 deletions.
88 changes: 46 additions & 42 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,49 @@
{
"name": "mckenziearts/laravel-notify",
"description": "Flexible flash notifications for Laravel",
"keywords": ["Laravel", "laravel-notify", "notification"],
"license": "MIT",
"support": {
"issues": "https://github.com/mckenziearts/laravel-notify/issues",
"source": "https://github.com/mckenziearts/laravel-notify"
},
"authors": [
{
"name": "Arthur Monney",
"email": "[email protected]"
}
],
"require": {
"php": "~8.0",
"illuminate/support": "^8.0|^9.0|^10.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.0|^9.0",
"laravel/pint": "^1.6"
},
"autoload": {
"psr-4": {
"Mckenziearts\\Notify\\": "src/"
"name": "mckenziearts/laravel-notify",
"description": "Flexible flash notifications for Laravel",
"keywords": [
"Laravel",
"laravel-notify",
"notification"
],
"license": "MIT",
"support": {
"issues": "https://github.com/mckenziearts/laravel-notify/issues",
"source": "https://github.com/mckenziearts/laravel-notify"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Mckenziearts\\Notify\\LaravelNotifyServiceProvider"
],
"aliases": {
"Notify": "Mckenziearts\\Notify\\Facades\\LaravelNotify"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
"authors": [
{
"name": "Arthur Monney",
"email": "[email protected]"
}
],
"require": {
"php": "~8.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.0|^9.0|^10.5",
"laravel/pint": "^1.6"
},
"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
}

0 comments on commit eafcd81

Please sign in to comment.