-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 1.05 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
{
"name": "charlesportwoodii/yii2-api",
"description": "Yii2 API Skeleton",
"license": "BSD-3-Clause",
"authors": [{
"name": "Charles R. Portwood II",
"email": "charlesportwoodii@erianna.com"
}],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"charlesportwoodii/yii2-api-rest-components": "^0.2.0"
},
"require-dev": {
"codeception/codeception": "2.4.1",
"yiisoft/yii2-faker": "^2.0.4",
"yiisoft/yii2-gii": "^2.0.7",
"yiisoft/yii2-debug": "~2.0.14",
"yiisoft/yii2-shell": "~2.0.1",
"fzaninotto/faker": "^1.8",
"codeception/specify": "*",
"codeception/verify": "*",
"flow/jsonpath": "^0.4.0",
"php-http/curl-client": "^1.7",
"mohrekopp/php-mailhog-client": "dev-master",
"squizlabs/php_codesniffer": "^3.2",
"yiisoft/yii2-coding-standards": "^2.0"
},
"scripts": {
"post-install-cmd": [
"mkdir -p runtime/logs",
"mkdir -p runtime/cache"
]
}
}