-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
executable file
·53 lines (52 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
{
"name": "dmstr/yii2-json-editor",
"description": "Yii2 wrapper for \"json-editor/json-editor\" (is a fork of \"jdorn/json-editor\")",
"keywords": [
"yii2",
"json",
"json-editor"
],
"type": "yii2-extension",
"license": "BSD-2-Clause",
"homepage": "https://github.com/dmstr/yii2-json-editor",
"authors": [
{
"name": "Marc Mautz",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"yiisoft/yii2": "~2.0.0",
"npm-asset/json-editor--json-editor": "^2.5.0"
},
"suggest": {
"2amigos/yii2-selectize-widget": "Recommended assets for selectize plugin in json-editor",
"2amigos/yii2-ckeditor-widget": "Recommended assets for CKEditor plugin in json-editor"
},
"autoload": {
"psr-4": {
"dmstr\\jsoneditor\\": "src"
}
},
"config": {
"preferred-install": {
"dmstr/*": "source",
"hrzg/*": "source",
"schmunk42/*": "source",
"*": "auto"
},
"fxp-asset": {
"installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
},
"vcs-driver-options": {
"github-no-api": true
},
"git-skip-update": "2 days",
"pattern-skip-version": "(-build|-patch)",
"optimize-with-installed-packages": true
}
}
}