-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
35 lines (35 loc) · 930 Bytes
/
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
{
"name": "i-lateral/silverstripe-reviews",
"description": "Expands comments module to also allow for reviewing of an object",
"type": "silverstripe-vendormodule",
"homepage": "http://github.com/i-lateral/silverstripe-reviews",
"keywords": ["silverstripe", "reviews", "comments"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "ilateral",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/i-lateral/silverstripe-reviews/issues"
},
"require": {
"silverstripe/framework": "~4.0",
"silverstripe/comments": "^3.5"
},
"extra": {
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"ilateral\\SilverStripe\\Reviews\\": "src/"
}
},
"scripts": {
"lint": "phpcs -s src/"
},
"minimum-stability": "dev"
}