Skip to content

Commit

Permalink
Added laravel 10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
akhan619 committed Apr 28, 2023
1 parent 39f0e03 commit 3e31b7d
Showing 1 changed file with 65 additions and 52 deletions.
117 changes: 65 additions & 52 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,54 +1,67 @@
{
"name": "akhan619/laravel-ses-event-manager",
"description": "A Laravel package to manage incoming SES email events with http/s webhooks.",
"license": "MIT",
"authors": [
{
"name": "Aman Khan",
"email": "[email protected]"
}
],
"homepage": "https://github.com/akhan619/laravel-ses-event-manager",
"keywords": ["Laravel", "SES", "webhooks", "http", "https", "email", "events", "bounce", "open", "click", "delivery", "send"],
"require": {
"php": "^8.0.2",
"illuminate/support": "~9",
"aws/aws-php-sns-message-validator": "^1.6",
"aws/aws-sdk-php": "^3.218",
"symfony/psr-http-message-bridge": "^2.0",
"nyholm/psr7": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"orchestra/testbench": "^7.0",
"sempro/phpunit-pretty-print": "^1.4",
"mockery/mockery": "^1.5"
},
"autoload": {
"psr-4": {
"Akhan619\\LaravelSesEventManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Akhan619\\LaravelSesEventManager\\Tests\\": "tests",
"Akhan619\\LaravelSesEventManager\\Database\\Factories\\": "database/factories/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-unit": "vendor/bin/phpunit --testsuite Unit",
"test-feature": "vendor/bin/phpunit --testsuite Feature",
"test-f": "vendor/bin/phpunit --filter"
},
"extra": {
"laravel": {
"providers": [
"Akhan619\\LaravelSesEventManager\\LaravelSesEventManagerServiceProvider"
],
"aliases": {
"SesMailer": "Akhan619\\LaravelSesEventManager\\Facades\\SesMailer"
}
}
}
"name": "akhan619/laravel-ses-event-manager",
"description": "A Laravel package to manage incoming SES email events with http/s webhooks.",
"license": "MIT",
"authors": [
{
"name": "Aman Khan",
"email": "[email protected]"
}
],
"homepage": "https://github.com/akhan619/laravel-ses-event-manager",
"keywords": [
"Laravel",
"SES",
"webhooks",
"http",
"https",
"email",
"events",
"bounce",
"open",
"click",
"delivery",
"send"
],
"require": {
"php": "^8.0",
"illuminate/support": "^9.0|^10.0",
"aws/aws-php-sns-message-validator": "^1.6",
"aws/aws-sdk-php": "^3.218",
"symfony/psr-http-message-bridge": "^2.0",
"nyholm/psr7": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^7.0",
"sempro/phpunit-pretty-print": "^1.4",
"mockery/mockery": "^1.5"
},
"autoload": {
"psr-4": {
"Akhan619\\LaravelSesEventManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Akhan619\\LaravelSesEventManager\\Tests\\": "tests",
"Akhan619\\LaravelSesEventManager\\Database\\Factories\\": "database/factories/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-unit": "vendor/bin/phpunit --testsuite Unit",
"test-feature": "vendor/bin/phpunit --testsuite Feature",
"test-f": "vendor/bin/phpunit --filter"
},
"extra": {
"laravel": {
"providers": [
"Akhan619\\LaravelSesEventManager\\LaravelSesEventManagerServiceProvider"
],
"aliases": {
"SesMailer": "Akhan619\\LaravelSesEventManager\\Facades\\SesMailer"
}
}
}
}

0 comments on commit 3e31b7d

Please sign in to comment.