-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
39 lines (39 loc) · 1.04 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
{
"name": "jeremykendall/query-auth",
"description": "Signature generation and validation for REST API query authentication",
"license": "MIT",
"authors": [
{
"name": "Jeremy Kendall",
"homepage": "http://about.me/jeremykendall",
"role": "Developer"
}
],
"keywords": [
"REST",
"authentication",
"query authentication",
"API"
],
"require": {
"php": ">=5.4",
"ircmaxell/random-lib": "~v1.0"
},
"require-dev": {
"guzzle/guzzle": ">=3.7.0,<=3.9.9",
"guzzlehttp/guzzle": "~4",
"mockery/mockery": "0.9.2",
"phpunit/phpunit": "4.*",
"slim/slim": "2.*"
},
"autoload": {
"psr-0": {
"QueryAuth\\": "src/"
}
},
"suggest": {
"guzzle/guzzle": "To use the Guzzle v3 outgoing request adapter",
"guzzlehttp/guzzle": "To use the Guzzle v4 outgoing request adapter",
"slim/slim": "To use the Slim v2 incoming request adapter"
}
}