-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.49 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
54
55
56
57
58
{
"name": "sonnenglas/dhl-parcel-de-sdk",
"description": "Unofficial PHP SDK for DHL Parcel DE (Post & Parcel Germany) Rest API",
"keywords": ["mydhl", "dhl", "dhlparcel", "parcel", "api", "rest", "api", "client", "php"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Przemek Peron",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "~7.1",
"league/iso3166": "^4.3"
},
"autoload": {
"psr-4": {
"Sonnenglas\\DhlParcelDe\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.13.2",
"phpstan/phpstan": "^1.9.11",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-strict-rules": "^1.4.5",
"phpstan/phpstan-phpunit": "^1.3.3",
"phpstan/phpstan-deprecation-rules": "^1.1.1"
},
"scripts": {
"lint": [
"./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --verbose --config=.php-cs-fixer.dist.php --using-cache=no --dry-run --diff"
],
"lint:fix": [
"./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --verbose --config=.php-cs-fixer.dist.php --using-cache=no --diff"
],
"phpstan": [
"php ./vendor/bin/phpstan"
],
"test": [
"sh scripts/tests.sh"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}