forked from assert6/hyperf-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 911 Bytes
/
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": "assert6/hyperf-elasticsearch",
"description": "Hyperf ElasticSearch Client",
"require": {
"php": ">=8.1",
"ext-swoole": ">=5.0",
"hyperf/contract": "~3.1.0",
"hyperf/collection": "~3.1.0",
"hyperf/di": "~3.1.0",
"hyperf/framework": "~3.1.0",
"hyperf/guzzle": "~3.1.0",
"hyperf/logger": "~3.1.0",
"hyperf/support": "~3.1.0",
"elasticsearch/elasticsearch": "^7.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"friendsofhyperf/rector": "^0.1.5",
"friendsofphp/php-cs-fixer": "^3.41"
},
"authors": [
{
"name": "jan",
"email": "1688609@gmail.com"
},{
"name": "assert6",
"email": "z@hyperf.io"
}
],
"autoload": {
"psr-4": {
"Janartist\\Elasticsearch\\": "src/"
}
},
"extra": {
"hyperf": {
"config": "Janartist\\Elasticsearch\\ConfigProvider"
}
}
}