generated from yii2-extensions/template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
110 lines (109 loc) · 3.18 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "yii2-extensions/blog",
"type": "library",
"description": "Simple blog.",
"keywords": [
"blog",
"simple",
"yii2"
],
"license": "mit",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-filter": "*",
"ext-gd": "*",
"ext-mbstring": "*",
"php-forge/awesome-component": "dev-main",
"php-forge/html": "dev-main",
"sjaakp/yii2-icon": "^1.0",
"vova07/yii2-imperavi-widget": "*",
"yii2-extensions/asset-bootbox": "dev-main",
"yii2-extensions/asset-bootstrap5": "dev-main",
"yii2-extensions/asset-fontawesome": "dev-main",
"yii2-extensions/bootstrap5":"dev-main",
"yii2-extensions/core-library": "dev-main",
"yii2-extensions/datetime-picker": "dev-main",
"yii2-extensions/filepond": "dev-main",
"yii2-extensions/nested-sets-behavior": "dev-main",
"yii2-extensions/selectize": "dev-main",
"yii2-extensions/summernote": "dev-main",
"yiisoft/strings": "^2.3",
"yiisoft/yii2": "^2.2"
},
"require-dev": {
"maglnet/composer-require-checker": "^4.6",
"phpunit/phpunit": "^10.2",
"yii2-extensions/phpstan": "dev-main",
"yiisoft/config": "^1.3"
},
"autoload": {
"psr-4": {
"Yii\\Blog\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yii\\Blog\\tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
},
"config-plugin": {
"params": "params.php",
"params-web": "params-web.php",
"yii2-blog": "extension.php"
},
"config-plugin-options": {
"source-directory": "config"
},
"config-plugin-environments": {
"tests": {
"common": "tests/common/*.php",
"console": [
"$common",
"tests/console/*.php"
],
"web": [
"$common",
"web/*.php",
"tests/web/*.php"
],
"params": "params.php",
"params-console": "$params",
"params-web": [
"$params",
"tests/params-web.php"
]
}
},
"installer-types": ["bower-asset", "npm-asset"],
"installer-paths": {
"./node_modules/{$name}/": ["type:bower-asset", "type:npm-asset"]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"yiisoft/yii2-composer": true,
"yiisoft/config": true,
"composer/installers": true,
"oomphinc/composer-installers-extender": true
}
},
"scripts": {
"check-dependencies": "composer-require-checker",
"mutation": "roave-infection-static-analysis-plugin",
"phpstan": "phpstan",
"test": "phpunit"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}