-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
93 lines (93 loc) · 2.92 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
{
"name": "wrkflow/php-api-sdk-builder",
"description": "This package helps you build PHP clients for external APIs with dependency injection and type strict code in mind.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/wrk-flow/php-api-sdk-builder",
"authors": [
{
"name": "Martin Kluska",
"email": "martin@kluska.cz"
}
],
"require": {
"php": ">=8.1",
"guzzlehttp/psr7": "^2.5",
"php-http/discovery": "^1.14",
"psr/http-client": "^1.0.1",
"psr/http-message": "^1.0.1 || ^2.0",
"wrkflow/php-get-typed-value": "^0.8.2"
},
"require-dev": {
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^7.4",
"http-interop/http-factory-guzzle": "^1.2",
"laravel/framework": "^9.25",
"laravel/telescope": "v4.14.2",
"league/flysystem": "^3.14",
"mockery/mockery": "^1.5.1",
"nyholm/psr7": "^1.8.0",
"orchestra/testbench": "v7.26.1",
"php-http/mock-client": "^1.6",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "1.3",
"phpunit/phpunit": "9.5.21",
"rector/rector": "0.17.7",
"symplify/easy-coding-standard": "11.5.0"
},
"suggest": {
"laravel/framework": "SDKs work great with Laravel - solid container.",
"wrkflow/larastrict": "Improve your Laravel code base with strict conventions."
},
"scripts": {
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover --ansi"
],
"check": "composer lint && composer test",
"lint:check": "./vendor/bin/ecs",
"lint:fix": "./vendor/bin/ecs --fix",
"lint:stan": "./vendor/bin/phpstan",
"lint:stan:baseline": "./vendor/bin/phpstan -b",
"lint:upgrade:check": "vendor/bin/rector process --dry-run",
"lint:upgrade": "vendor/bin/rector process",
"lint": "composer lint:upgrade && composer lint:fix && composer lint:stan",
"test": "./vendor/bin/phpunit"
},
"autoload": {
"psr-4": {
"WrkFlow\\ApiSdkBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WrkFlow\\ApiSdkBuilderTests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"WrkFlow\\ApiSdkBuilder\\Laravel\\LaravelServiceProvider"
]
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"symfony/thanks": false,
"php-http/discovery": false
}
},
"archive": {
"exclude": ["/docs"]
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/pionl"
}
]
}