-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·102 lines (84 loc) · 2.33 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·102 lines (84 loc) · 2.33 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "binary-cube/elastic-tool",
"description": "Elastic Tool :: Food for thought",
"keywords": [
"php", "elastic-tool", "binary-cube", "indices", "mapping"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Banciu N. Cristian Mihai",
"role": "Developer",
"homepage": "https://binary-cube.com"
}
],
"support": {
"source": "https://github.com/binary-cube/elastic-tool",
"issues": "https://github.com/binary-cube/elastic-tool/issues?state=open"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=7.1",
"psr/log": "1.1.*",
"psr/container": "1.*",
"elasticsearch/elasticsearch": "7.*"
},
"require-dev": {
"phpunit/phpunit": "~8.0",
"squizlabs/php_codesniffer": "3.*"
},
"suggest": {
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"process-timeout": 300
},
"autoload": {
"psr-4": {
"BinaryCube\\ElasticTool\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BinaryCube\\ElasticTool\\Tests\\": "tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"bin": [
],
"scripts": {
"check": [
"@cs-check",
"@tests"
],
"generate-reports": [
"@create-folders",
"@cs-report",
"@tests-report-html",
"@tests-report-xml",
"@tests-report-clover"
],
"create-folders": [
"[ ! -d build ] && mkdir -p build || exit 0;"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"tests": "phpunit",
"cs-report": "phpcs --report=json --report-file=build/phpcs-report.json || exit 0;",
"tests-report-html": "phpunit --coverage-html build/phpunit/coverage/html || exit 0;",
"tests-report-xml": "phpunit --coverage-xml build/phpunit/coverage/xml || exit 0;",
"tests-report-clover": "phpunit --coverage-clover build/phpunit/coverage/clover/index.xml || exit 0;"
},
"scripts-descriptions": {
},
"extra": {
}
}