-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 987 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
35
36
37
38
39
40
41
42
{
"name": "ybelenko/dtf-dbs-client",
"description": "API client of DTF API for Dealer Business System",
"type": "library",
"license": "MIT",
"keywords": [
"DTF",
"DBS",
"API",
"client"
],
"autoload": {
"psr-4": {
"Ybelenko\\DtfDbsClient\\": "src/"
}
},
"authors": [
{
"name": "Yuriy Belenko",
"email": "yura-bely@mail.ru"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4 || ^8.0",
"php-http/multipart-stream-builder": "^1.2",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"guzzlehttp/guzzle": "^7.4",
"phpunit/phpunit": "^9.5"
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"fixer": "php-cs-fixer fix --allow-risky=yes -vv"
}
}