-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "firesphere/elastic-search",
"description": "Search a SilverStripe site with Elastic Enterprise or Elastic search",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"keywords": [
"silverstripe",
"search",
"elastic",
"configuration"
],
"authors": [
{
"name": "Simon `Firesphere` Erkelens",
"email": "[email protected]",
"homepage": "https://firesphere.dev",
"role": "Lead developer"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"firesphere/searchbackend": "^1.0",
"elasticsearch/elasticsearch": "^8.10",
"elastic/enterprise-search": "^8.10"
},
"require-dev": {
"silverstripe/recipe-cms": "^4|^5",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.35",
"firesphere/searchbackend": "dev-main as 1.999999999"
},
"extra": {
"branch-alias": {
"dev-main": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"Firesphere\\ElasticSearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Firesphere\\ElasticSearch\\Tests\\": "tests"
}
},
"support": {
"issues": "https://github.com/firesphere/silverstripe-elastic-search/issues",
"source": "https://github.com/firesphere/silverstripe-elastic-search",
"chat": "https://silverstripe-users.slack.com/archives/C9KB3U0P8"
},
"suggest": {
"ext-pcntl": "Support for multi-core indexing"
},
"config": {
"sort-packages": true,
"process-timeout": 600,
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"silverstripe/recipe-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}