-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
41 lines (41 loc) · 1.27 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
{
"name":"restler/framework",
"description":"Just the Restler Framework without the tests and examples",
"type":"library",
"keywords":["server","api","framework","REST"],
"homepage":"https://luracast.com/products/restler/",
"license":"LGPL-2.1-or-later",
"authors":[
{
"name":"Luracast",
"email":"[email protected]"
}
],
"suggest":{
"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.0",
"ext-json": "*"
},
"repositories":[
{
"type":"vcs",
"url":"https://github.com/zendframework/ZendAmf.git"
}
],
"autoload":{
"psr-4":{
"Luracast\\Restler\\":"/"
}
},
"replace": {
"luracast/restler":"3.*"
}
}