forked from Luracast/Restler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 2.16 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name":"luracast/restler",
"description":"Restler is a simple and effective multi-format Web API Server framework written in PHP. Just deal with your business logic in php, Restler will take care of the REST!",
"type":"library",
"keywords":["server","api","framework","REST"],
"homepage":"http://luracast.com/products/restler/",
"license":"LGPL-2.1",
"authors":[
{
"name":"Luracast",
"email":"[email protected]"
}
],
"extra":{
"branch-alias":{
"v3":"v3.0.x-dev"
}
},
"suggest":{
"guzzle/guzzle":"RESTful api HTTP client framework (see require-dev for details)",
"behat/behat":"Behaviour driven development testing framework (see require-dev for details)",
"rodneyrehm/plist":"If you need Apple plist binary/xml format",
"zendframework/zendamf":"If you need AMF format",
"symfony/yaml":"If you need YAML format",
"twig/twig":"If you want to use twig templates with Html format",
"mustache/mustache":"If you want to use mustache/handlebar templates with Html format",
"illuminate/view":"If you want to use laravel blade templates with Html format",
"bshaffer/oauth2-server-php":"If you want to use OAuth2 for authentication"
},
"require":{
"php":">=5.3.0"
},
"require-dev":{
"symfony/finder":"2.5.x-dev",
"guzzle/guzzle":"~3.1.1",
"behat/behat":"2.5.*@stable",
"bshaffer/oauth2-server-php":"v1.0"
},
"repositories":[
{
"type":"vcs",
"url":"https://github.com/zendframework/ZendAmf.git"
},
{
"type":"package",
"package":{
"name":"luracast/explorer",
"version":"v3.0.0",
"dist":{
"type":"zip",
"url":"https://github.com/Luracast/Restler-API-Explorer/zipball/v3.0.0"
}
}
}
],
"autoload":{
"psr-0":{
"Luracast\\Restler":"vendor/"
}
},
"minimum-stability": "dev",
"conflict": {
"restler/framework":"3.*"
}
}