forked from johnitvn/yii2-ajaxcrud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1.02 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
{
"name": "johnitvn/yii2-ajaxcrud",
"description": "Gii CRUD template for Single Page Ajax Administration for yii2",
"type": "yii2-extension",
"keywords": ["yii2","extension","ajax","crud","gii","template","database"],
"license": "Apache-2.0",
"authors": [
{
"name": "John Martin",
"email": "[email protected]",
"homepage": "https://github.com/johnitvn?tab=repositories"
}
],
"support": {
"issues": "https://github.com/johnitvn/yii2-ajaxcrud/issues?state=open",
"source": "https://github.com/johnitvn/yii2-ajaxcrud"
},
"require": {
"yiisoft/yii2": "*",
"yiisoft/yii2-gii": "*",
"yiisoft/yii2-bootstrap": "*",
"kartik-v/yii2-grid": "^3.0.4",
"kartik-v/yii2-mpdf": "^1.0.0",
"kartik-v/yii2-editable": "^1.7.3"
},
"autoload": {
"psr-4": {
"johnitvn\\ajaxcrud\\": "src/"
}
},
"extra": {
"bootstrap": "johnitvn\\ajaxcrud\\Bootstrap"
}
}