-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·38 lines (38 loc) · 1013 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
{
"name": "jadu/address-finder-client",
"type": "library",
"autoload": {
"psr-4": {
"": "src/"
}
},
"require": {
"php": ">=7.2.5",
"psr/http-message": "^1.0.1",
"php-http/client-implementation": "^1.0",
"php-http/httplug": "^2.0",
"php-http/message-factory": "^1.0.2",
"php-http/discovery": "^1.14.3",
"php-http/guzzle6-adapter": "^2.0.2",
"jadu/continuum-common": "~3.0|~2.0",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19.3",
"phpunit/phpunit": "^9.0.0",
"mockery/mockery": "^1.3.6",
"php-http/mock-client": "^1.4.1",
"php-http/message": "^1.13.0",
"guzzlehttp/psr7": "^1.9.0",
"jadu/php-style": "^1.3"
},
"config": {
"bin-dir": "vendor/bin",
"platform": {
"php": "8.1"
},
"allow-plugins": {
"php-http/discovery": false
}
}
}