-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
60 lines (60 loc) · 2.11 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
{
"name": "naffiq/yii2-bridge",
"description": "Simple admin panel for enthusiasts",
"type": "project",
"require": {
"yiisoft/yii2": "^2.0",
"yii2tech/admin": "^1.0",
"yiisoft/yii2-bootstrap": "^2.0",
"kartik-v/yii2-widgets": "^3.4",
"2amigos/yii2-usuario": "~1.0",
"phpdocumentor/reflection-docblock": "^4.1.1",
"mihaildev/yii2-elfinder": "^1.2",
"mihaildev/yii2-ckeditor": "*",
"yii2tech/ar-position": "^1.0",
"2amigos/yii2-grid-view-library": "^1.0",
"yii2tech/ar-softdelete": "^1.0",
"zelenin/yii2-i18n-module": "^0.1.9",
"codemix/yii2-localeurls": "^1.7",
"vlucas/phpdotenv": "^2.4",
"kolyunya/yii2-map-input-widget": "^1.2",
"mohorev/yii2-upload-behavior": "^0.2.0",
"yii2-bridge/slug-behavior": "^0.1"
},
"license": "MIT",
"authors": [
{
"name": "naffiq",
"email": "naffiq@gmail.com"
}
],
"minimum-stability": "stable",
"bin": ["bin/bridge-install"],
"autoload": {
"psr-4": {
"naffiq\\bridge\\": "src/",
"naffiq\\bridge\\assets\\": "src/assets/",
"naffiq\\bridge\\behaviors\\": "src/behaviors/",
"naffiq\\bridge\\controllers\\": "src/controllers/",
"naffiq\\bridge\\tests\fixtures\\": "tests/fixtures/",
"naffiq\\bridge\\modules\\query\\": "src/models/query/",
"naffiq\\bridge\\modules\\search\\": "src/models/search/",
"naffiq\\bridge\\modules\\": "src/models/",
"naffiq\\bridge\\widgets\\": "src/widgets/",
"naffiq\\bridge\\widgets\\columns\\": "src/widgets/columns/",
"naffiq\\bridge\\gii\\helpers\\": "src/gii/helpers/",
"naffiq\\bridge\\gii\\crud\\": "src/gii/crud/",
"naffiq\\bridge\\gii\\model\\": "src/gii/model/"
}
},
"require-dev": {
"yiisoft/yii2-gii": "^2.0",
"phpunit/phpunit": "^5.7"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}