-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
34 lines (34 loc) · 908 Bytes
/
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
{
"name": "jmeyering/hal-explorer",
"description": "HalExplorer is a php client for exploring HAL Hateoas apis. HalExplorer is able to craft requests and follow links to resource relationships.",
"authors": [
{
"name": "Jared Meyering",
"email": "[email protected]"
}
],
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": ">=5.5.0",
"psr/http-message": "^1.0",
"ql/uri-template": "^1.0"
},
"require-dev": {
"phpspec/phpspec": "^2.2",
"apigen/apigen": "^4.1"
},
"suggest": {
"guzzlehttp/guzzle": "PSR7 HTTP Client that works with the default adapter"
},
"autoload": {
"psr-4": {
"HalExplorer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HalExplorer\\Tests\\": "tests/"
}
}
}