forked from ope-tech/laravel-ses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.86 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "piep14/laravel-ses",
"description": "Allows you to track opens, deliveries, bounces, complaints and clicked links when sending emails through Laravel and Amazon SES",
"type": "library",
"license": "MIT",
"keywords": [
"Laravel",
"SES",
"Amazon",
"Email",
"Amazon Simple Email Service",
"Email Marketing",
"Email Tracking"
],
"authors": [
{
"name": "Oliver Eady",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "~6.0",
"illuminate/console": "~6.0",
"illuminate/mail": "~6.0",
"illuminate/database": "~6.0",
"illuminate/container": "~6.0",
"illuminate/routing": "~6.0",
"aws/aws-sdk-php": "^3.28",
"ramsey/uuid": "^3.7",
"guzzlehttp/guzzle": "~6.0",
"paquettg/php-html-parser": "^1.7",
"aws/aws-php-sns-message-validator": "^1.4",
"symfony/psr-http-message-bridge": "^1.0",
"zendframework/zend-diactoros": "^2.1.3",
"nesbot/carbon": "^2.23"
},
"require-dev": {
"mockery/mockery": "~1.0",
"orchestra/database": "~3.5",
"orchestra/testbench": "~3.5",
"phpunit/phpunit": "~7.0"
},
"replace": {
"oliveready7/laravel-ses": "^0.1.0"
},
"autoload": {
"psr-4": {
"oliveready7\\LaravelSes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"oliveready7\\LaravelSes\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"oliveready7\\LaravelSes\\LaravelSesServiceProvider"
],
"aliases": {
"SesMail": "oliveready7\\LaravelSes\\SesMail"
}
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}