-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
37 lines (37 loc) · 1 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
{
"name": "nexucis/es-index-helper",
"description": "Elasticsearch Index Helper for php, which allows you to manage your indices without any downtime",
"keywords": ["index", "no downtime", "helper", "elasticsearch"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Augustin Husson"
}
],
"require": {
"php": "^7.1 | ^8.0",
"elasticsearch/elasticsearch": "^7.0.1"
},
"require-dev": {
"phpunit/phpunit": "^7.5.20 | ^9.3.8",
"squizlabs/php_codesniffer": "3.5.8",
"phpstan/phpstan": "^0.12.77",
"yoast/phpunit-polyfills": "^0.2.0"
},
"autoload": {
"psr-4": {
"Nexucis\\": "src/Nexucis/"
}
},
"autoload-dev": {
"psr-4": {
"Nexucis\\Tests\\": "tests/Nexucis/Tests"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"lint": "./vendor/bin/phpcs --standard=ruleset.xml --extensions=php --encoding=utf-8 --tab-width=4 -v src/ tests/",
"analyse": "./vendor/bin/phpstan analyse --level 7 -c phpstan.neon src/"
}
}