-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
33 lines (33 loc) · 860 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
{
"name": "symbiote/silverstripe-microblog",
"description": "Provides microblog type functionality for creating interactive sites like Facebook, Twitter and Reddit.",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "comments", "blog", "microblog"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Marcus Nyeholt",
"email": "[email protected]"
}
],
"require":
{
"silverstripe/framework": "~4.0",
"symbiote/silverstripe-multivaluefield": "~5.0",
"symbiote/silverstripe-queuedjobs": "~4.0",
"symbiote/silverstripe-apiwrapper": "~1.0",
"ezyang/htmlpurifier": "~4.11"
},
"scripts": {
"phpcbf": "phpcbf src/ tests/",
"phpcs": "phpcs src/ tests/"
},
"extra": {
"expose": [
"client/www"
],
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}