-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.23 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
{
"name": "imdhemy/es-testing-utils",
"description": "Elasticsearch Testing utils",
"type": "library",
"keywords": [
"PHP",
"Elasticsearch",
"Testing",
"Mocking"
],
"homepage": "https://github.com/imdhemy/es-testing-utils",
"license": "MIT",
"readme": "/README.md",
"authors": [
{
"name": "imdhemy",
"email": "[email protected]",
"homepage": "https://imdhemy.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/imdhemy/es-testing-utils/issues"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"elasticsearch/elasticsearch": "^8.4",
"fakerphp/faker": "^1.20"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.10",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.26"
},
"autoload": {
"psr-4": {
"EsUtils\\": "src/",
"Imdhemy\\EsUtils\\": "src/es-utils/"
}
},
"autoload-dev": {
"psr-4": {
"Imdhemy\\Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit --testdox",
"psalm": "vendor/bin/psalm --show-info=true",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"pre-commit": [
"@format",
"@psalm",
"@test"
]
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.4.0"
}
}
}