-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
34 lines (34 loc) · 838 Bytes
/
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
{
"name": "smolevich/reindexer-client",
"description": "PHP client for using database reindexer",
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"require": {
"php": ">=8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^3.0",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
"": "src/",
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Stanislav Shupilkin",
"email": "[email protected]"
}
],
"scripts": {
"run-test": "phpunit",
"style-fix": "php-cs-fixer fix",
"check-fix": "php-cs-fixer fix --dry-run"
}
}