-
Notifications
You must be signed in to change notification settings - Fork 93
/
composer.json
74 lines (74 loc) · 2.15 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
69
70
71
72
73
74
{
"name": "mailjet/laravel-mailjet",
"description": "Laravel package for Mailjet API V3 and Laravel Mailjet Mail Transport",
"keywords": [
"framework",
"laravel",
"mailjet",
"mailjet wrapper",
"transport",
"mailjet API"
],
"license": "MIT",
"type": "library",
"homepage": "https://github.com/mailjet/laravel-mailjet",
"authors": [
{
"name": "Gaetan DELBART",
"email": "[email protected]",
"homepage": "https://github.com/gagaXD"
},
{
"name": "Titouan BENOIT",
"email": "[email protected]",
"homepage": "https://github.com/Nightbr"
},
{
"name": "Mailjet API",
"email": "[email protected]",
"homepage": "https://dev.mailjet.com/"
}
],
"require": {
"php": "^7.4|^8.0",
"laravel/framework": "^9.0|^10.0|^11.0",
"mailjet/mailjet-apiv3-php": "^1.5.6|^1.5",
"symfony/http-client": "^7.1",
"symfony/mailjet-mailer": "^6.0"
},
"require-dev": {
"fakerphp/faker": "~1",
"mockery/mockery": "0.9.*|^1.0",
"orchestra/testbench": "3.6|^4.0|^5.0|^6.0|^8.0|^9.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "~7.0|^8.0|^9|^10.0"
},
"autoload": {
"psr-4": {
"Mailjet\\LaravelMailjet\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Mailjet\\LaravelMailjet\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Mailjet\\LaravelMailjet\\MailjetServiceProvider"
],
"aliases": {
"Mailjet": "Mailjet\\LaravelMailjet\\Facades\\Mailjet"
}
}
},
"config": {
"sort-packages": true,
"bin-dir": "bin"
},
"scripts": {
"post-install-cmd": "\"bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd" : "\"bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility"
}
}