-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
36 lines (36 loc) · 965 Bytes
/
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
{
"name": "voskobovich/yii2-crud-toolkit",
"description": "The foundation for implementing CRUD operations for Yii2",
"keywords": [
"crud",
"yii2",
"toolkit"
],
"homepage": "https://github.com/voskobovich/yii2-crud-toolkit",
"type": "yii2-toolkit",
"license": "MIT",
"support": {
"issues": "https://github.com/voskobovich/yii2-crud-toolkit/issues",
"source": "https://github.com/voskobovich/yii2-crud-toolkit"
},
"authors": [
{
"name": "Vitaly Voskobovich",
"email": "[email protected]",
"homepage": "http://voskobovich.com"
}
],
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "^2.0.0",
"voskobovich/yii2-base-toolkit": "^2.3.0",
"friendsofphp/php-cs-fixer": "^2"
},
"autoload": {
"psr-4": {
"voskobovich\\crud\\actions\\": "src/actions",
"voskobovich\\crud\\controllers\\": "src/controllers",
"voskobovich\\crud\\forms\\": "src/forms"
}
}
}