-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
49 lines (49 loc) · 1.43 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
{
"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": ">=7.3.0",
"psr/http-message": "^1.0 || ^2.0"
},
"suggest": {
"guzzlehttp/guzzle": "^6.0",
"laminas/laminas-diactoros": "^1.8 || ^2.2",
"symfony/security": "^4.0 || ^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2.1",
"guzzlehttp/guzzle": "^6.0",
"nyholm/psr7": "^1.0",
"php-coveralls/php-coveralls": "^2.2",
"phpmd/phpmd": "^2.0",
"phpunit/phpunit": "^8.0",
"symfony/psr-http-message-bridge": "^2.0",
"symfony/phpunit-bridge": "^4.0 || ^5.0",
"symfony/security-bundle": "^4.0 || ^5.0"
},
"replace": {
"acquia/hmac-request": "self.version"
},
"autoload": {
"psr-4": {
"Acquia\\Hmac\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Acquia\\Hmac\\Test\\": "test/"
}
}
}