-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.26 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.26 KB
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
{
"name": "viget/ddev-plugin",
"description": "Your plugin’s package description",
"type": "craft-plugin",
"keywords": ["some", "keywords", "here"],
"license": "MIT",
"authors": [
{
"name": "Developer Name",
"homepage": "https://developer-website.tld"
}
],
"support": {
"email": "email@developer-website.tld",
"issues": "https://github.com/developer/repo/issues?state=open",
"source": "https://github.com/developer/repo",
"docs": "https://github.com/developer/repo/blob/master/README.md"
},
"require": {
"craftcms/cms": "^5.3.0"
},
"autoload": {
"psr-4": {
"viget\\ddev\\": "src/"
}
},
"extra": {
"name": "DDEV Plugin",
"handle": "ddev-plugin",
"class": "viget\\ddev\\Plugin"
},
"archive": {
"exclude": [
"craft",
".ddev",
".github",
"tests",
".vscode",
".idea",
"public",
"vendor",
"composer.lock",
".gitignore",
".editorconfig",
".env*",
"phpunit.xml*"
]
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}