-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.45 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
{
"name": "uma/psr7-hmac",
"description": "An HMAC authentication library built on top of the PSR-7 specification",
"license": "MIT",
"type": "library",
"keywords": ["http", "psr7", "hmac"],
"homepage": "https://github.com/1ma/Psr7Hmac",
"support": {
"issues": "https://github.com/1ma/Psr7Hmac/issues",
"source": "https://github.com/1ma/Psr7Hmac"
},
"require": {
"php": "^7.3.0 || ^7.4.0 || ^8.0.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.3",
"kambo/httpmessage": "^0.9.0",
"laminas/laminas-diactoros": "^2.5",
"nyholm/psr7": "^1.0",
"phpmetrics/phpmetrics": "^2.7",
"phpunit/phpunit": "^9.5",
"ringcentral/psr7": "^1.2",
"slim/slim": "^3.4",
"symfony/psr-http-message-bridge": "^2.0",
"wandu/http": "^3.0",
"windwalker/http": "^3.1"
},
"autoload": {
"psr-4": {
"UMA\\Psr7Hmac\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UMA\\Tests\\Psr7Hmac\\": "tests/"
}
},
"scripts": {
"test": "php -dzend.assertions=1 -dassert.exception=1 vendor/bin/phpunit",
"metrics": [
"@test",
"vendor/bin/phpmetrics --junit=./build/junit.xml --report-html=./build/metrics ."
]
},
"config": {
"sort-packages": true
}
}