forked from Luracast/Restler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 2.13 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.4",
"ext-json": "*"
},
"require-dev":{
"ext-libxml": "*",
"guzzlehttp/guzzle":"^7.0@dev",
"bshaffer/oauth2-server-php":"dev-master",
"behat/behat": "^3.8@dev",
"rize/uri-template": "dev-master",
"illuminate/view": "^8",
"twig/twig": "^3",
"mustache/mustache": "dev-master"
},
"repositories":[
{
"type":"vcs",
"url":"https://github.com/zendframework/ZendAmf.git"
}
],
"autoload":{
"psr-4":{
"Luracast\\Restler\\":"vendor/Luracast/Restler"
}
},
"autoload-dev": {
"classmap": ["public/examples/common"]
},
"minimum-stability": "dev",
"conflict": {
"restler/framework":"3.*"
},
"config": {
"bin-dir": "./"
}
}