-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 878 Bytes
/
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
{
"name": "kaxiluo/api-signature",
"description": "api signature and verification, guzzle signature middleware, signature verify middleware",
"keywords": [
"php",
"api",
"signature",
"verification",
"middleware"
],
"license": "MIT",
"authors": [
{
"name": "linyiyong",
"email": "linyiyongcn@163.com"
}
],
"require": {
"php": ">=7.0",
"ext-json": "*",
"psr/http-message": "^1.0",
"psr/simple-cache": "^1.0",
"nyholm/psr7": "^1.4",
"symfony/psr-http-message-bridge": "^2.1",
"psr/http-server-middleware": "^1.0",
"guzzlehttp/guzzle": "~6.0|~7.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"mockery/mockery": "1.3.2"
},
"autoload": {
"psr-4": {
"Kaxiluo\\ApiSignature\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}