-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
64 lines (64 loc) · 1.51 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "pozitronik/yii2-grid-config",
"description": "Configurable grids for YII2",
"type": "yii2-extension",
"keywords": [
"yii2",
"extension",
"widget",
"grid"
],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Pavel Dubrovsky",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=8.0",
"pozitronik/yii2-users-options": "^2.0.0",
"pozitronik/yii2-traits": "^1.0.0",
"kartik-v/yii2-sortable": "dev-master",
"kartik-v/yii2-widget-switchinput": "dev-master"
},
"suggest": {
"yiisoft/yii2-bootstrap": "for yii2-grid-config extensions to work with Bootstrap 3.x version",
"yiisoft/yii2-bootstrap4": "for yii2-grid-config to work with Bootstrap 4.x version"
},
"require-dev": {
"yiisoft/yii2": "dev-master",
"yiisoft/yii2-bootstrap4": "~2.0.10",
"yiisoft/yii2-bootstrap": "dev-master",
"phpunit/phpunit": "^9.5",
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.3",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-yii2": "^1.1",
"codeception/module-db": "^1.1",
"codeception/module-filesystem": "^1.0",
"codeception/module-rest": "^1.3.1",
"vlucas/phpdotenv": "^5.4.1",
"codeception/module-cli": "dev-master"
},
"autoload": {
"psr-4": {
"pozitronik\\grid_config\\": "src"
}
},
"config": {
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}