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
65 lines (65 loc) · 1.29 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.29 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
63
64
65
{
"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.4",
"ext-json": "*",
"ext-curl": "*",
"spameri/elastic-query": "^v1.0.0",
"elasticsearch/elasticsearch": "^7.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": {
"spameri/coding-standard": "dev-master",
"spameri/dependency-mocker": "^1.3",
"nette/tester": "^2.4",
"phpstan/phpstan": "0.12.84",
"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
}
}
}