-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
95 lines (95 loc) · 2.26 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "juststeveking/php-sdk",
"description": "A framework for building SDKs in PHP.",
"type": "library",
"keywords": [
"php","sdk","sdk-framework","psr-18"
],
"license": "MIT",
"authors": [
{
"name": "Steve McDougall",
"email": "[email protected]",
"homepage": "https://www.juststeveking.uk/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/juststeveking/php-sdk/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/JustSteveKing"
}
],
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-fileinfo": "*",
"crell/serde": "^1.0.1",
"juststeveking/sdk-tools": "^0.0.5",
"league/object-mapper": "dev-main",
"nyholm/psr7": "^1.8.1",
"php-http/client-common": "^2.7.1",
"php-http/discovery": "^1.19.2",
"psr/http-client": "^1.0.3",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*",
"psr/http-message": "^2.0",
"ramsey/collection": "^2.0",
"symfony/http-client": "^7.0"
},
"require-dev": {
"laravel/pint": "^1.13.7",
"php-http/mock-client": "^1.6",
"phpstan/phpstan": "^1.10.50",
"phpunit/phpunit": "^10.5.3",
"rector/rector": "^0.18.13",
"roave/security-advisories": "dev-latest"
},
"provide": {
"psr-discovery/http-client-implementations": "^1.0"
},
"suggest": {},
"autoload": {
"psr-4": {
"JustSteveKing\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JustSteveKing\\Sdk\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"optimize-autoloader": true,
"sort-packages": true,
"classmap-authoritative": true
},
"scripts": {
"pint": [
"./vendor/bin/pint"
],
"refactor": [
"./vendor/bin/rector --debug"
],
"stan": [
"./vendor/bin/phpstan analyse --memory-limit=3g"
],
"test": [
"./vendor/bin/phpunit --testdox"
]
},
"scripts-descriptions": {
"pint": "Run Laravel Pint on the codebase.",
"refactor": "Run Rector on the codebase.",
"stan": "Run PhpStan on the codebase.",
"test": "Run PhpUnit on the testsuite."
}
}