-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 951 Bytes
/
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
{
"name": "ptejada/laravel-mailgun-options",
"description": "Laravel mailgun driver helper to toggle email opens, clicks, tag emails and more per mailable.",
"keywords": ["laravel", "mailgun", "email tracking"],
"license": "MIT",
"authors": [
{
"name": "Pablo Tejada",
"email": "pablo@tejada.dev"
}
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"PabloTejada\\MailgunOptions\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PabloTejada\\MailgunOptions\\Tests\\": "tests"
}
},
"require": {
"ext-json": "*",
"guzzlehttp/guzzle": "^6 || ^7",
"illuminate/support": "^7.0 || ^8 || ^9"
},
"require-dev": {
"orchestra/database": "^5.0 || ^6.0",
"orchestra/testbench": "^5.0 || ^6 || ^7",
"phpunit/phpunit": "^6 || ^7 || ^8"
}
}