-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
50 lines (50 loc) · 1.3 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
{
"name": "extreme/drip",
"description": "Drip connector for Craft 3.x",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"drip"
],
"support": {
"docs": "https://github.com/extreme-creations/drip/blob/master/README.md",
"issues": "https://github.com/extreme-creations/drip/issues"
},
"license": "MIT",
"authors": [
{
"name": "Extreme",
"homepage": "https://madebyextreme.com"
}
],
"require": {
"craftcms/cms": "^3.2.0"
},
"autoload": {
"psr-4": {
"extreme\\drip\\": "src/"
}
},
"extra": {
"name": "Drip",
"handle": "drip",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/extreme-creations/drip/master/CHANGELOG.md",
"components": {
"dripService": "extreme\\drip\\services\\DripService"
},
"class": "extreme\\drip\\Drip"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3",
"phpmd/phpmd": "^2",
"overtrue/phplint": "^1.1",
"codeception/codeception": "^3.1",
"vlucas/phpdotenv": "^3.0",
"friendsofphp/php-cs-fixer": "^2.0.0"
}
}