-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.47 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
{
"name": "codeduck/elasticsearch",
"description": "A minimalistic elasticsearch client",
"keywords": [
"elasticsearch",
"client",
"mini",
"kiss",
"simple"
],
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Andreas Lange",
"email": "[email protected]"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"CodeDuck\\Elasticsearch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodeDuck\\Elasticsearch\\": "tests/"
}
},
"require": {
"php": ">=7.4.0",
"ext-json": "*",
"symfony/http-client-contracts": "^2.0 || ^1.0"
},
"require-dev": {
"infection/infection": "^0.21",
"phpunir/phpunit": "^9.1",
"psalm/plugin-phpunit": "^0.15",
"roave/security-advisories": "dev-latest",
"symfony/http-client": "^5.2",
"vimeo/psalm": "^4.6"
},
"scripts": {
"test:coverage": "phpunit --exclude-group=integration --coverage-text",
"test:infection": "infection --ansi --test-framework-options=\"--exclude-group=integration\" -s --min-msi=95 --min-covered-msi=95",
"test:integration": "phpunit --group=integration --no-coverage",
"test:psalm": "psalm",
"test:unit": "phpunit --exclude-group=integration --no-coverage"
}
}