-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.88 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
{
"name": "ion-bazan/aliyun-http-signer",
"type": "library",
"description": "PSR-7-compatible Alibaba Cloud API Gateway request signing implementation. Integrates with Guzzle \u26fd\ufe0f and HttPlug \ud83d\udc18.",
"keywords": [
"Aliyun",
"Alibaba",
"Alibaba Cloud",
"API Gateway",
"Guzzle",
"PSR-7",
"HMAC",
"Signature",
"httplug",
"http",
"middleware"
],
"homepage": "https://github.com/IonBazan/aliyun-http-signer",
"license": "MIT",
"authors": [
{
"name": "Ion Bazan",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"psr/http-message": "^1.0 || ^2.0",
"ramsey/uuid": "^3.0 || ^4.0 || ^5.0",
"symfony/polyfill-php82": "^1.22"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"infection/infection": "~0.15",
"laminas/laminas-diactoros": "^2.2 || ^3.0",
"php-http/client-common": "^2.0",
"phpunit/phpunit": "^10.5 || ^11"
},
"suggest": {
"guzzlehttp/guzzle": "^6.0|^7.0, to use Guzzle Middleware",
"ion-bazan/guzzle-bundle-aliyun-signer-plugin": "to integrate with Guzzle Bundle",
"laminas/laminas-diactoros": "^2.2 || ^3.0, to build HTTP requests",
"php-http/client-common": "^2.0, to use HttPlug plugin"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"autoload": {
"psr-4": {
"IonBazan\\AliyunSigner\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IonBazan\\AliyunSigner\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/IonBazan/aliyun-http-signer/issues"
}
}