Skip to content

Commit

Permalink
update laravel 11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
lpheller committed Apr 30, 2024
1 parent e902d4f commit b99d741
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
{
"name": "aw-studio/laravel-maillog",
"description": "Automatically log information about all outgoing mail in your Laravel application.",
"license": "MIT",
"authors": [
{
"name": "Lukas Heller",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "^8.0|^9.0|^10.0",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"illuminate/mail": "^8.0|^9.0|^10.0",
"illuminate/database": "^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
"AwStudio\\Maillog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"AwStudio\\Maillog\\MaillogServiceProvider"
]
}
"name": "aw-studio/laravel-maillog",
"description": "Automatically log information about all outgoing mail in your Laravel application.",
"license": "MIT",
"authors": [
{
"name": "Lukas Heller",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
"illuminate/mail": "^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "^8.0|^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"AwStudio\\Maillog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"AwStudio\\Maillog\\MaillogServiceProvider"
]
}
}
}

0 comments on commit b99d741

Please sign in to comment.