-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
61 lines (61 loc) · 1.52 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
{
"name": "intonate/laravel-mandrill-driver",
"description": "Laravel Mandrill API based mail driver.",
"keywords": [
"driver",
"laravel",
"laravel-package",
"mail",
"mailchimp",
"mailer",
"mailing",
"mandrill",
"mandrill-api",
"mandrill-driver",
"mandrill-email"
],
"type": "library",
"homepage": "https://github.com/intonate/laravel-mandrill-driver",
"support": {
"issues": "https://github.com/intonate/laravel-mandrill-driver/issues",
"source": "https://github.com/intonate/laravel-mandrill-driver"
},
"license": "MIT",
"authors": [
{
"name": "Jorge González",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^11.0",
"mailchimp/transactional": "^1.0",
"symfony/mailchimp-mailer": "^7.0",
"symfony/http-client": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"psy/psysh": "^0.12",
"symfony/var-dumper": "^7.0",
"orchestra/testbench": "^9.0"
},
"autoload": {
"psr-4": {
"Intonate\\Mandrill\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Intonate\\Tests\\Mandrill\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Intonate\\Mandrill\\MandrillServiceProvider"
]
}
},
"prefer-stable": true
}