forked from acquia/http-hmac-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.53 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
{
"name": "acquia/http-hmac-php",
"type": "library",
"description": "An implementation of the HTTP HMAC Spec in PHP that integrates with popular libraries such as Symfony and Guzzle.",
"homepage": "https://github.com/acquia/http-hmac-php",
"license": "MIT",
"authors": [
{
"name": "See contributors",
"homepage": "https://github.com/acquia/http-hmac-php/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/acquia/http-hmac-php/issues"
},
"require": {
"php": "~5.6 || ~7.0",
"psr/http-message": "~1.0.0"
},
"suggest": {
"guzzlehttp/guzzle": "~6.0",
"symfony/psr-http-message-bridge": "^1.1.2 | ^2.0",
"symfony/security": "^3.0 | ^4.0",
"laminas/laminas-diactoros": "^1.8 || ^2.2"
},
"require-dev": {
"guzzlehttp/guzzle": "~6.0",
"phploc/phploc": "^4.0",
"phpmd/phpmd": "^2.0",
"phpunit/phpunit": "~5.7",
"sebastian/phpcpd": "^2.0",
"friendsofphp/php-cs-fixer": "^2.11",
"symfony/psr-http-message-bridge": "^1.1.2 | ^2.0",
"symfony/security": "^3.0 | ^4.0",
"symfony/security-bundle": "^3.0 | ^4.0",
"laminas/laminas-diactoros": "^1.8 || ^2.2"
},
"replace": {
"acquia/hmac-request": "self.version"
},
"autoload": {
"psr-4": {
"Acquia\\Hmac\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Acquia\\Hmac\\Test\\": "test/"
}
}
}