-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.46 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
{
"name": "marketforce-info/yii2-sendgrid",
"description": "Yii2 Sendgrid Mailer extension",
"keywords": ["yii2", "sendgrid", "mailer"],
"authors": [
{
"name": "Market Force Information",
"homepage": "https://github.com/marketforce-info"
},
{
"name": "Wade Shuler",
"homepage": "https://github.com/wadeshuler",
"email": "[email protected]"
}
],
"homepage": "https://github.com/marketforce-info/yii2-sendgrid",
"support": {
"issues": "https://github.com/marketforce-info/yii2-sendgrid/issues?state=open",
"source": "https://github.com/marketforce-info/yii2-sendgrid"
},
"type": "yii2-extension",
"minimum-stability": "stable",
"license": "MIT",
"require": {
"php": "^7.4 || ^8",
"ext-json": "*",
"sendgrid/sendgrid": "^7.0",
"yiisoft/yii2": "^2"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"symplify/easy-coding-standard": "^11",
"phpunit/phpunit": "^9",
"yidas/yii2-composer-bower-skip": "^2.0"
},
"autoload": {
"psr-4": {
"MarketforceInfo\\SendGrid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MarketforceInfo\\SendGrid\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}