forked from acquia/http-hmac-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.62 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.62 KB
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
{
"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.5.0",
"psr/http-message": "~1.0.0",
"sarciszewski/php-future": "~0.4.2"
},
"suggest": {
"guzzlehttp/guzzle": "~6.0",
"silex/silex": "~1.3.0",
"symfony/psr-http-message-bridge": "~0.1.0",
"symfony/security": "~3.0.0",
"zendframework/zend-diactoros": "~1.3.5"
},
"require-dev": {
"guzzlehttp/guzzle": "~6.0",
"pdepend/pdepend": "~1.0",
"phploc/phploc": "~2.0",
"phpmd/phpmd": "~1.0",
"phpunit/phpunit": "~3.0",
"scrutinizer/ocular": "~1.0",
"sebastian/phpcpd": "~2.0",
"silex/silex": "~1.3.0",
"squizlabs/php_codesniffer": "^2.3",
"symfony/psr-http-message-bridge": "~0.1.0",
"symfony/security": "~3.0.0",
"zendframework/zend-diactoros": "~1.3.5"
},
"replace": {
"acquia/hmac-request": "self.version"
},
"autoload": {
"psr-4": {
"Acquia\\Hmac\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Acquia\\Hmac\\Test\\": "test/"
}
}
}