-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.15 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
{
"name": "kununu/elasticsearch",
"description": "Library for simplified querying and usage of Elasticsearch @ Kununu",
"type": "library",
"license": "proprietary",
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-mbstring": "*",
"elasticsearch/elasticsearch": "^7.0",
"kununu/collections": "^5.0",
"psr/log": "^1.0|^2.0|^3.0"
},
"require-dev": {
"kununu/scripts": ">=5.0",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Kununu\\Elasticsearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kununu\\Elasticsearch\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --log-events-text phpunit.log --no-coverage --no-logging --no-progress --testsuite Full",
"test-coverage": "XDEBUG_MODE=coverage phpunit --log-events-text phpunit.log --no-progress --testsuite Full"
},
"scripts-descriptions": {
"test": "Run all tests",
"test-coverage": "Run all tests with coverage report"
},
"config": {
"allow-plugins": {
"kununu/scripts": true
},
"sort-packages": true
}
}