This repository has been archived by the owner on Dec 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 115
/
composer.json
63 lines (63 loc) · 1.91 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
{
"name": "bogardo/mailgun",
"description": "Laravel package for sending mail via the Mailgun API",
"keywords": [
"mailgun",
"laravel",
"mail",
"email",
"bogardo"
],
"homepage": "https://github.com/Bogardo/Mailgun",
"license": "MIT",
"authors": [
{
"name": "Chris Bogaards",
"email": "[email protected]",
"homepage": "http://bogardo.com/"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "~5.1|^6.0",
"mailgun/mailgun-php": "^2.1",
"nesbot/carbon": "^1.26.3 || ^2.0",
"php-http/message": "^1.3"
},
"require-dev": {
"mockery/mockery": "^0.9.5",
"orchestra/testbench": "^3.3",
"php-http/mock-client": "^0.3.3",
"phpunit/phpunit": "~4.0||~5.0",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"Bogardo\\Mailgun\\": "src"
}
},
"autoload-dev": {
"files": [
"tests/MailgunTestCase.php"
]
},
"scripts": {
"style:check": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"style:fix": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src"
},
"suggest": {
"barryvdh/laravel-ide-helper": "Add accurate autocompletion for Laravel Facades, including the Mailgun facade",
"php-http/guzzle6-adapter": "Use Guzzle 6 as your Mailgun HTTP client",
"php-http/guzzle5-adapter": "Use Guzzle 5 as your Mailgun HTTP client"
},
"extra": {
"laravel": {
"providers": [
"Bogardo\\Mailgun\\MailgunServiceProvider"
],
"aliases": {
"Mailgun": "Bogardo\\Mailgun\\Facades\\Mailgun"
}
}
}
}