forked from blackwolf-cz/http-signature
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.58 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
{
"name": "blackwolf-cz/http-signature",
"description": "Implementation of the IETF HTTP Signatures draft RFC",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Arnold Daniels",
"email": "[email protected]",
"homepage": "https://www.jasny.net"
},
{
"name": "Michal Kandr",
"homepage": "https://www.michalkandr.cz"
}
],
"support": {
"issues": "https://github.com/blackwolf-cz/http-signature/issues",
"source": "https://github.com/blackwolf-cz/http-signature"
},
"require": {
"php": ">=7.2.0",
"improved/improved": "^0.1.0",
"nesbot/carbon": "^2.12",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.3",
"jasny/php-code-quality": "2.4.*",
"php-http/client-common": "^2.0",
"php-http/mock-client": "^1.3"
},
"autoload": {
"psr-4": {
"Jasny\\HttpSignature\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jasny\\HttpSignature\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"phpstan analyse",
"phpunit",
"phpcs -p src"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}