Skip to content

Commit

Permalink
Merge pull request #105 from laravel-shift/l10-compatibility
Browse files Browse the repository at this point in the history
Laravel 10.x Compatibility
  • Loading branch information
mckenziearts committed Mar 13, 2023
2 parents 911d62e + 501fa56 commit 6756556
Showing 1 changed file with 44 additions and 40 deletions.
84 changes: 44 additions & 40 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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||8.0|8.1",
"illuminate/support": "~7.0|~8.0|~9.0|~10.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
}

0 comments on commit 6756556

Please sign in to comment.