forked from Luracast/Restler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.82 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
66
67
68
69
70
71
72
73
74
75
76
{
"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]"
},
{
"name":"Nick nickl- Lombard",
"email":"[email protected]"
}
],
"extra":{
"branch-alias":{
"v3":"v3.0.x-dev"
}
},
"suggest":{
"luracast/explorer":"Restler's very own api explorer (see require-dev for details)",
"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":"Restler supports tho Apple plist xml format (see require-dev for details)",
"zendframework/zendamf":"Support for the amf document format (see require-dev for details)",
"symfony/yaml":"Restler can produce content in yaml format as well (see require-dev for details)",
"twig/twig":"Restler can render HtmlView using twig templates (see require-dev for details)",
"mustache/mustache":"Restler can render HtmlView using mustache/handlebar templates (see require-dev for details)",
"illuminate/view":"Restler can render HtmlView using laravel blade templates (see require-dev for details)",
"bshaffer/oauth2-server-php":"Restler can provide OAuth2 authentication using this library (see require-dev for details)"
},
"require":{
"php":">=5.3.0"
},
"require-dev":{
"luracast/explorer":"*",
"guzzle/guzzle":"~3.1.1",
"behat/behat":"2.5.*@stable",
"rodneyrehm/plist":"dev-master",
"zendframework/zendamf":"dev-master",
"symfony/yaml":"*",
"mustache/mustache": "dev-master",
"twig/twig": "v1.13.0",
"illuminate/view": "4.2.*",
"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.*"
}
}