-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 877 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 877 Bytes
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
{
"name": "spameri/elastic-query",
"description": "Objects instead of arrays for querying to ElasticSearch.",
"authors": [
{
"name": "Václav Čevela",
"email": "vcevela@gmail.com"
}
],
"support": {
"issues": "https://github.com/Spameri/ElasticQuery/issues"
},
"require": {
"php": ">=8.2",
"ext-json": "*"
},
"require-dev": {
"ext-curl": "*",
"phpstan/phpstan": "^1.11.3",
"nette/tester": "v2.5.7",
"elasticsearch/elasticsearch": "^9.0.0",
"guzzlehttp/guzzle": "^7.0",
"slevomat/coding-standard": "^8.0"
},
"autoload": {
"psr-4": {
"Spameri\\ElasticQuery\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SpameriTests\\": "tests/SpameriTests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"brach-alias": {
"dev-master": "2.0.0"
}
}