-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.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": "silktide/craft-silktide",
"description": "Integrate Silktide with Craft",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"silktide craft",
"silktide"
],
"support": {
"docs": "https://support.silktide.com/guides/cms-install-craft3-guide/",
"issues": "https://github.com/silktide/cms-plugin-craft3/issues",
"source": "https://github.com/silktide/cms-plugin-craft3/"
},
"license": "MIT",
"authors": [
{
"name": "Silktide Ltd",
"homepage": "https://www.silktide.com"
},
{
"name": "Richard Bairwell",
"homepage": "https://github.com/rbairwell"
}
],
"require": {
"php": "^7.0",
"ext-openssl": "*",
"ext-json": "*",
"craftcms/cms": "^3.0.0-RC1"
},
"autoload": {
"psr-4": {
"silktide\\craftsilktide\\": "src/"
}
},
"extra": {
"name": "Silktide",
"handle": "craft-silktide",
"hasCpSettings": true,
"hasSettings" : false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/silktide/cms-plugin-craft3/master/CHANGELOG.md",
"class": "silktide\\craftsilktide\\CraftSilktide",
"developer": "Silktide Ltd",
"documentationUrl": "https://support.silktide.com/guides/cms-install-craft3-guide/"
}
}