-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
49 lines (49 loc) · 1.05 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
{
"name": "jouwweb/sendcloud",
"description": "Provides a client to interact with the Sendcloud API in an object-oriented way.",
"keywords": [
"sendcloud",
"client",
"api",
"jouwweb",
"parcel",
"webhook"
],
"homepage": "https://github.com/Webador/sendcloud",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Webador",
"email": "[email protected]"
}
],
"scripts": {
"test": "phpunit"
},
"autoload": {
"psr-4": {
"JouwWeb\\Sendcloud\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Test\\JouwWeb\\Sendcloud\\": "test"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.1.0"
}
},
"require": {
"php": ">=8.1.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.4.5"
},
"require-dev": {
"phpunit/phpunit": "^10.0.0",
"symfony/var-dumper": "^6.0.0"
}
}