forked from boundstate/yii2-mailgun
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
32 lines (32 loc) · 912 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
{
"name": "boundstate/yii2-mailgun",
"description": "Mailgun integration for the Yii framework",
"type": "yii2-extension",
"keywords": ["yii2", "extension", "rackspace", "mailgun", "mail", "email", "mailer"],
"license": "Apache-2.0",
"authors": [
{
"name": "Mike Peters",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": ">=2.0.4",
"mailgun/mailgun-php": "^3"
},
"require-dev": {
"phpunit/phpunit": "^8",
"kriswallsmith/buzz": "^1.0",
"nyholm/psr7": "^1.2",
"vlucas/phpdotenv": "^3.6"
},
"suggest": {
"kriswallsmith/buzz": "Mailgun API client requires an HTTP client",
"nyholm/psr7": "Mailgun API client requires a PSR-7 implementation"
},
"autoload": {
"psr-4": {
"boundstate\\mailgun\\": "src"
}
}
}