-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
39 lines (39 loc) · 980 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
36
37
38
39
{
"name": "webfox/silverstripe-blog-search",
"description": "A Silverstripe extension to add Blog Search functionality",
"keywords": [
"webfox",
"silverstripe",
"blog",
"search"
],
"type": "silverstripe-vendormodule",
"require": {
"silverstripe/blog": "^3.1@dev",
"silverstripe/recipe-cms": "^1.0 || ^4.0",
"silverstripe/vendor-plugin": "^1.0"
},
"license": "MIT",
"authors": [
{
"name": "Matthew Hailwood",
"email": "[email protected]"
},
{
"name": "Otis Wright",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"WebFox\\BlogSearch\\": "src/",
"WebFox\\BlogSearch\\Tests\\": "tests/"
}
},
"extra": {
"installer-name": "silverstripe-blog-search",
"branch-aliase": {
"dev-master": "2.0.x-dev"
}
}
}