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