-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
51 lines (51 loc) · 1.3 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
{
"name": "ichaber/silverstripe-swiftype",
"description": "Use Swiftype search with Silverstripe",
"type": "silverstripe-vendormodule",
"homepage": "http://github.com/ichaber/silverstripe-swiftype",
"keywords": [
"silverstripe",
"swiftype",
"search"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Charlie Bergthaler",
"email": "[email protected]"
},
{
"name": "Chris Penny",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/ichaber/silverstripe-swiftype/issues"
},
"require": {
"php": "^8.1",
"silverstripe/cms": "^5",
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"silverstripe/recipe-testing": "^3"
},
"autoload": {
"psr-4": {
"Ichaber\\SSSwiftype\\": "src/",
"Ichaber\\SSSwiftype\\Tests\\": "tests/"
}
},
"extra": {
"installer-name": "silverstripe-swiftype"
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true
}
}
}