-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.44 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.44 KB
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
{
"name": "toppy/sendcloud-client",
"version": "0.4.1",
"description": "Complete Sendcloud API v3 specification - merged from official sendcloud.dev documentation",
"keywords": [
"openapitools",
"openapi-generator",
"openapi",
"php",
"sdk",
"rest",
"api"
],
"homepage": "https://sendcloud.dev/docs/getting-started/",
"license": "MIT",
"authors": [
{
"name": "Toppy",
"homepage": "https://github.com/toppynl"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/psr7": "^1.8 || ^2.0",
"php-http/async-client-implementation": "^1.0",
"php-http/client-common": "^2.4",
"php-http/discovery": "^1.14",
"php-http/httplug": "^2.2",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"rector/rector": "^2.0",
"guzzlehttp/guzzle": "^7.0",
"php-http/guzzle7-adapter": "^1.0"
},
"autoload": {
"psr-4": { "Toppy\\Sendcloud\\V3\\" : "src/" }
},
"autoload-dev": {
"psr-4": { "Toppy\\Sendcloud\\V3\\Test\\" : "test/" }
}
}