-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.24 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
{
"name": "rollerworks/search-elasticsearch",
"description": "ElasticSearch (Elastica) extension for RollerworksSearch",
"license": "MIT",
"type": "library",
"keywords": [
"rollerworks",
"search",
"doctrine",
"dbal"
],
"authors": [
{
"name": "Sebastiaan Stok",
"email": "[email protected]"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Rollerworks/search-elasticsearch/contributors"
}
],
"require": {
"php": ">=8.1",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"rollerworks/search": ">=2.0.0-BETA1 ^2.0@dev",
"ruflin/elastica": "^5.0 || ^6.0"
},
"require-dev": {
"moneyphp/money": "^3.0",
"symfony/phpunit-bridge": "^6.4 || ^7.0",
"symfony/var-dumper": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
"Rollerworks\\Component\\Search\\Elasticsearch\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Rollerworks\\Component\\Search\\Tests\\Elasticsearch\\": "Tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "2.0-dev"
}
}
}