-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
76 lines (76 loc) · 2.16 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
{
"name": "yii2-extensions/app-basic",
"type": "project",
"description": "Web Application Basic",
"keywords": [
"application",
"basic",
"web",
"yii2"
],
"license": "mit",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"npm-asset/flag-icons": "^7.1",
"npm-asset/fortawesome--fontawesome-free": "^6.5",
"sjaakp/yii2-icon": "^1.0",
"ui-awesome/html": "^0.3",
"ui-awesome/html-component-bootstrap5": "^1.0@dev",
"ui-awesome/html-core":"^0.1",
"ui-awesome/html-helper":"^0.2",
"ui-awesome/html-svg":"^0.2",
"yii2-extensions/asset-bootstrap5": "^0.1",
"yii2-extensions/bootstrap5": "^0.1",
"yii2-extensions/localeurls": "dev-main",
"yiisoft/config": "^1.4",
"yiisoft/yii2": "^2.0.49 || ^2.2",
"yiisoft/yii2-symfonymailer": "^4.0"
},
"require-dev": {
"codeception/c3": "^2.8",
"codeception/codeception": "^5.0.0",
"codeception/lib-innerbrowser": "^4.0",
"codeception/module-asserts": "^3.0",
"codeception/module-filesystem": "^3.0",
"codeception/module-yii2": "^1.1",
"codeception/verify": "^3.0",
"maglnet/composer-require-checker": "^4.6",
"symfony/browser-kit": "^6.3",
"symfony/process": "^6.3",
"yii2-extensions/debug": "dev-main",
"yii2-extensions/gii": "dev-main",
"yii2-extensions/phpstan": "^0.1"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
},
"config-plugin-file": "/config/config-plugin.php"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"codeception/c3": true,
"yiisoft/yii2-composer": true,
"composer/installers": true,
"yiisoft/config": true
}
}
}