forked from Spameri/Elastic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.26 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.26 KB
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
{
"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": "vcevela@gmail.com"
}
],
"require": {
"php": ">=7.1",
"ext-json": "*",
"nette/di": "^2.4.10",
"nette/security": "^2.3.0",
"nette/utils": "^2.4.10",
"spameri/elastic-query": "^0.6.0",
"elasticsearch/elasticsearch": "^6.0",
"kdyby/console": "^2.7.1",
"kdyby/datetime-provider": "v1.0.0",
"kdyby/monolog": "^1.3.2",
"tracy/tracy": "^2.4.18"
},
"require-dev": {
"spameri/coding-standard": "dev-master",
"spameri/dependency-mocker": "^1.3",
"nette/tester": "^2.2.0",
"phpstan/phpstan-shim": "^0.11.5",
"php-coveralls/php-coveralls": "^2.1",
"nette/bootstrap": "2.4",
"nette/http": "^2.4.7",
"mockery/mockery": "^1.2"
},
"autoload": {
"psr-4": {
"Spameri\\Elastic\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SpameriTests\\": "tests/SpameriTests"
},
"classmap": [
"tests/SpameriTests/Elastic/Migration/migrations"
]
}
}