-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
executable file
·55 lines (55 loc) · 1.35 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
52
53
54
55
{
"name": "gathercontent/gathercontent",
"description": "Integrates GatherContent",
"type": "craft-plugin",
"version": "1.0.10",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"gathercontent"
],
"support": {
"docs": "http://solspace.com",
"issues": "http://solspace.com"
},
"license": "MIT",
"authors": [
{
"name": "Solspace",
"homepage": "http://solspace.com"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"symfony/property-access": "^3.3",
"symfony/finder": "^3.3",
"symfony/filesystem": "^3.3",
"hashids/hashids": "^1.0",
"pixel418/markdownify": "2.1.11"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"gathercontent\\gathercontent\\": "src/"
}
},
"extra": {
"name": "GatherContent",
"handle": "gathercontent",
"schemaVersion": "1",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "???",
"components": {
"test": "gathercontent\\gathercontent\\services\\Test"
},
"class": "gathercontent\\gathercontent\\Gathercontent"
}
}