-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.11 KB
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "very-code-com/suus-php",
"description": "PHP client for the SUUS Logistics SOAP API (addOrder, getEvents, getDocument, getColliNo). First open-source PHP library for SUUS / Rohlig Logistics integration.",
"type": "library",
"license": "Apache-2.0",
"keywords": ["suus", "rohlig", "logistics", "shipping", "soap", "api", "client"],
"homepage": "https://github.com/very-code-com/suus-php",
"authors": [
{
"name": "Very Code",
"homepage": "https://very-code.com"
}
],
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-dom": "*",
"psr/log": "^2.0|^3.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.5|^11.0"
},
"autoload": {
"psr-4": {
"VeryCodeCom\\Suus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VeryCodeCom\\Suus\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}