-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
66 lines (66 loc) · 1.32 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "spameri/elastic",
"type": "library",
"description": "ElasticSearch for Nette Framework",
"keywords": [
"nette",
"spameri",
"elastic",
"elasticsearch"
],
"homepage": "http://github.com/spameri",
"license": [
"BSD-3-Clause",
"GPL-2.0",
"GPL-3.0"
],
"support": {
"issues": "https://github.com/spameri/elastic/issues"
},
"authors": [
{
"name": "VBoss",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"ext-curl": "*",
"spameri/elastic-query": "dev-master",
"elasticsearch/elasticsearch": "^8.12.0",
"nette/di": "^3.0.5",
"nette/utils": "^3.2.5",
"symfony/console": "^4.4.26",
"tracy/tracy": "^2.6.7",
"monolog/monolog": "^2.0.2",
"ezimuel/ringphp": "^1.2"
},
"require-dev": {
"slevomat/coding-standard": "^8.0",
"spameri/dependency-mocker": "^1.3",
"nette/tester": "^2.4",
"phpstan/phpstan": "^1.10.66",
"php-coveralls/php-coveralls": "^2.1",
"nette/bootstrap": "^3.0",
"nette/http": "^3.0.7",
"kdyby/console": "^4.0.0",
"mockery/mockery": "^1.5"
},
"autoload": {
"psr-4": {
"Spameri\\Elastic\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SpameriTests\\": "tests/SpameriTests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
}
}