-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
53 lines (53 loc) · 1.26 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
{
"name": "didww/didww-api-3-php-sdk",
"description": "PHP SDK for DIDWW API 3",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Igor Gonchar",
"email": "[email protected]"
},
{
"name": "Igor Fedoronchuk",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"swisnl/json-api-client": "^1.3.2|^2.0",
"illuminate/support": "5.5 - 10.0 || ^10.0",
"guzzlehttp/guzzle": "^7.0",
"phpseclib/phpseclib": "^3.0.7",
"ext-openssl": "*",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"php-vcr/php-vcr": "^1.4",
"friendsofphp/php-cs-fixer": "3.45.0",
"php-coveralls/php-coveralls": "^2.1",
"dms/phpunit-arraysubset-asserts": "^0.4 | ^0.5"
} ,
"autoload": {
"psr-4": {
"Didww\\": "src/"
}
},
"autoload-dev": {
"psr-4" : {
"Didww\\Tests\\" : "tests/"
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage phpunit",
"check-style": "php-cs-fixer fix --dry-run -v",
"fix-style": "php-cs-fixer fix"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}