-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (42 loc) · 1.04 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
{
"name": "vivre-tech/rest-renderer",
"description": "For Yii2: Just like Controller::Action but only for having multiple rendering templates in same place for data models.",
"keywords": ["yii2", "data-renderer", "renderer", "rest", "api", "rest-renderer"],
"type": "yii2-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/VivreTech/rest-renderer/issues",
"forum": "http://www.yiiframework.com/forum/",
"wiki": "https://github.com/VivreTech/rest-renderer/wiki",
"source": "https://github.com/VivreTech/rest-renderer"
},
"authors": [
{
"name": "Banciu N. Cristian Mihai",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"yiisoft/yii2": "~2.0.13"
},
"require-dev": {
"phpunit/phpunit": "6.5.*"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"vivretech\\rest\\renderer\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}