-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
149 lines (149 loc) · 4.57 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "yiisoft/yii-demo",
"type": "project",
"description": "Yii Framework Project Demo",
"keywords": [
"yii",
"app"
],
"homepage": "https://github.com/yiisoft/yii-demo",
"license": "BSD-3-Clause",
"support": {
"source": "https://github.com/yiisoft/yii-demo",
"issues": "https://github.com/yiisoft/yii-demo/issues",
"wiki": "https://github.com/yiisoft/yii-demo/wiki",
"forum": "http://www.yiiframework.com/forum/"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4|^8.0",
"cebe/markdown": "^1.2@dev",
"cycle/proxy-factory": "^1.2",
"httpsoft/http-message": "^1.0.5",
"psr/log": "^1.1",
"yiisoft/access": "^1.0",
"yiisoft/aliases": "^1.1.0",
"yiisoft/assets": "^1.0@dev",
"yiisoft/auth": "^3.0",
"yiisoft/cache": "^1.0",
"yiisoft/cache-file": "^1.0",
"yiisoft/composer-config-plugin": "^1.0@dev",
"yiisoft/csrf": "^1.0",
"yiisoft/data": "^3.0@dev",
"yiisoft/data-response": "^3.0@dev",
"yiisoft/di": "^3.0@dev",
"yiisoft/error-handler": "@dev",
"yiisoft/factory": "^3.0@dev",
"yiisoft/form": "^1.0@dev",
"yiisoft/html": "^3.0@dev",
"yiisoft/http": "^1.1",
"yiisoft/injector": "^1.0",
"yiisoft/log": "^1.0",
"yiisoft/log-target-file": "^1.0",
"yiisoft/mailer": "^3.0@dev",
"yiisoft/mailer-swiftmailer": "^3.0@dev",
"yiisoft/rbac": "^3.0@dev",
"yiisoft/rbac-php": "^3.0@dev",
"yiisoft/router": "^3.0@dev",
"yiisoft/router-fastroute": "^3.0@dev",
"yiisoft/security": "^1.0",
"yiisoft/user": "^3.0@dev",
"yiisoft/var-dumper": "^1.0",
"yiisoft/view": "^3.0@dev",
"yiisoft/widget": "^3.0@dev",
"yiisoft/yii-bootstrap5": "^3.0@dev",
"yiisoft/yii-console": "^3.0@dev",
"yiisoft/yii-cycle": "^3.0@dev",
"yiisoft/yii-debug": "^3.0@dev",
"yiisoft/yii-debug-api": "^3.0@dev",
"yiisoft/yii-event": "^3.0@dev",
"yiisoft/yii-swagger": "^3.0@dev",
"yiisoft/yii-view": "^3.0@dev",
"yiisoft/yii-web": "^3.0@dev",
"vlucas/phpdotenv": "*",
"pusher/pusher-php-server": "^5.0"
},
"require-dev": {
"codeception/c3": "^2.6.0",
"codeception/codeception": "^4.1.9",
"codeception/module-asserts": "@dev",
"codeception/module-phpbrowser": "@dev",
"fzaninotto/faker": "^1.9",
"phpunit/phpunit": "^9.4",
"roave/infection-static-analysis-plugin": "^1.5",
"roave/security-advisories": "dev-master",
"spatie/phpunit-watcher": "^1.23.1",
"vimeo/psalm": "^4.2"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"scripts": {
"post-update-cmd": [
"App\\Installer::postUpdate"
],
"test": "phpunit --testdox --no-interaction",
"test-watch": "phpunit-watcher watch"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
},
"config-plugin-output-dir": "runtime/build/config",
"config-plugin": {
"env": "?.env",
"common": "config/common/*.php",
"params": [
"config/params.php",
"?config/params-local.php"
],
"web": [
"$common",
"config/web/*.php"
],
"console": [
"$common",
"config/console/*.php"
],
"events": "config/events.php",
"events-web": [
"$events",
"config/events-web.php"
],
"events-console": [
"$events",
"config/events-console.php"
],
"providers": "config/providers.php",
"providers-web": [
"$providers",
"config/providers-web.php"
],
"providers-console": [
"$providers",
"config/providers-console.php"
],
"routes": "config/routes.php"
},
"installer-types": [
"npm-asset"
],
"installer-paths": {
"./node_modules/{$name}": [
"type:npm-asset"
]
}
},
"config": {
"sort-packages": true
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}