-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
36 lines (36 loc) · 910 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
35
36
{
"name":"zircote/hal",
"type":"library",
"time":"2012-11-27",
"license":"Apache-2.0",
"description":"A PHP implementation of HAL http://stateless.co/hal_specification.html",
"keywords":["Hal", "json", "api", "HATEOAS"],
"homepage":"https://github.com/zircote/Hal/",
"authors":[
{
"name":"Robert Allen",
"email":"zircote@gmail.com",
"homepage":"http://www.zircote.com"
},
{
"name":"Herman J. Radtke III",
"email":"hermanradtke@gmail.com",
"homepage":"http://hermanradtke.com"
},
{
"name":"Baldur Rensch",
"email": "brensch@gmail.com"
}
],
"require":{
"php":">=5.3.3"
},
"require-dev":{
"phpunit/phpunit":"3.7.*"
},
"autoload":{
"psr-0":{
"Hal\\":"library"
}
}
}