-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
40 lines (40 loc) · 1.09 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
{
"name": "heyday/silverstripe-elastica",
"description": "Provides Elastic Search integration for SilverStripe DataObjects using Elastica",
"type": "silverstripe-vendormodule",
"homepage": "http://github.com/heyday/silverstripe-elastica",
"keywords": [
"silverstripe",
"search",
"elasticsearch",
"elastica"
],
"license": "BSD-3-Clause",
"support": {
"issues": "http://github.com/heyday/silverstripe-elastica/issues"
},
"require": {
"php": ">=8.1",
"silverstripe/framework": "^5",
"ruflin/elastica": "^7",
"elasticsearch/elasticsearch": ">=7.3.0",
"symbiote/silverstripe-queuedjobs": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"Heyday\\Elastica\\": "src/",
"Heyday\\Elastica\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "4.2.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}