-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
44 lines (44 loc) · 1.11 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
{
"name": "webexcess/comments",
"description": "This package provides your visitors the possibility to comment stuff and discuss together.",
"type": "neos-plugin",
"license": "MIT",
"keywords": [
"flow",
"neos",
"comment"
],
"authors": [
{
"name": "Stefan Bruggmann",
"email": "stefan.bruggmann@webexcess.ch",
"homepage": "https://twitter.com/webexcess",
"role": "Developer"
},
{
"name": "Samuel Hauser",
"email": "samuel.hauser@webexcess.ch",
"homepage": "https://github.com/samuelhauser",
"role": "Developer"
}
],
"require": {
"neos/neos": "^4.0",
"flowpack/listable": "^3.1",
"neos/swiftmailer": "^7.0"
},
"suggest": {
"google/recaptcha": "^1.2"
},
"autoload": {
"psr-4": {
"WebExcess\\Comments\\": "Classes/"
}
},
"extra": {
"installer-name": "WebExcess.Comments",
"neos": {
"package-key": "WebExcess.Comments"
}
}
}