forked from githubjeka/yii2-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.54 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
{
"name": "githubjeka/rest-yii2",
"description": "Yii 2 Rest Api Template",
"keywords": ["yii2", "rest", "application template", "api"],
"homepage": "https://github.com/githubjeka/yii2-rest",
"type": "project",
"license": "BSD-4-Clause",
"authors": [
{
"name": "Evgeniy Tkachenko",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/githubjeka/yii2-rest/issues",
"source": "https://github.com/githubjeka/yii2-rest"
},
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*"
},
"require-dev": {
"yiisoft/yii2-codeception": "*",
"yiisoft/yii2-debug": "*",
"yiisoft/yii2-gii": "*"
},
"suggest": {
"codeception/codeception": "Codeception, 2.0.* is currently works well with Yii.",
"codeception/specify": "BDD style code blocks for PHPUnit and Codeception",
"codeception/verify": "BDD Assertions for PHPUnit and Codeception"
},
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::setPermission",
"yii\\composer\\Installer::generateCookieValidationKey"
]
},
"config": {
"process-timeout": 1800
},
"extra": {
"writable": [
"backend/runtime",
"backend/web/assets",
"rest/runtime"
],
"config": [
"environments/dev/rest/config/main-local.php"
]
}
}