forked from akhan619/laravel-ses-tracking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.45 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "akhan619/laravel-ses-tracking",
"description": "A Laravel artisan based package to create the AWS (SES + SNS) infrastructure to receive email event notifications with Http/Https endpoint.",
"license": "MIT",
"authors": [
{
"name": "Aman Khan",
"email": "amankhan.mailbox@gmail.com"
}
],
"homepage": "https://github.com/akhan619/laravel-ses-tracking",
"keywords": ["Laravel", "Ses", "Tracking", "Sns", "Webhook", "http", "https", "email", "cli"],
"require": {
"php": "^8.0.2",
"illuminate/support": "^9.0|^10.0",
"aws/aws-sdk-php": "^3.218"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"orchestra/testbench": "^7.0",
"sempro/phpunit-pretty-print": "^1.4",
"mockery/mockery": "^1.5"
},
"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"
},
"autoload": {
"psr-4": {
"Akhan619\\LaravelSesTracking\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Akhan619\\LaravelSesTracking\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Akhan619\\LaravelSesTracking\\LaravelSesTrackingServiceProvider"
]
}
}
}