-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
125 lines (125 loc) · 3.55 KB
/
composer.json
File metadata and controls
125 lines (125 loc) · 3.55 KB
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
{
"name": "yiisoft/app",
"type": "project",
"description": "Yii 3 application template",
"keywords": [
"yii3",
"app"
],
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"serve": "yii serve",
"test": "phpunit --testdox --no-interaction",
"test-watch": "phpunit-watcher watch"
},
"require": {
"php": "^7.4|^8.0",
"httpsoft/http-message": "^1.0.5",
"yiisoft/aliases": "^1.1.0",
"yiisoft/assets": "@dev",
"yiisoft/cache": "@dev",
"yiisoft/cache-file": "@dev",
"yiisoft/composer-config-plugin": "^1.0@dev",
"yiisoft/csrf": "^3.0@dev",
"yiisoft/data-response": "@dev",
"yiisoft/di": "@dev",
"yiisoft/error-handler": "@dev",
"yiisoft/form": "@dev",
"yiisoft/i18n": "^3.0@dev",
"yiisoft/i18n-message-php": "^3.0@dev",
"yiisoft/log": "@dev",
"yiisoft/log-target-file": "@dev",
"yiisoft/mailer": "@dev",
"yiisoft/mailer-swiftmailer": "@dev",
"yiisoft/router": "@dev",
"yiisoft/router-fastroute": "@dev",
"yiisoft/translator": "^3.0@dev",
"yiisoft/view": "@dev",
"yiisoft/widget": "@dev",
"yiisoft/yii-bulma": "@dev",
"yiisoft/yii-debug": "^3.0@dev",
"yiisoft/yii-event": "@dev",
"yiisoft/yii-view": "^3.0@dev",
"yiisoft/yii-web": "@dev"
},
"require-dev": {
"codeception/c3": "^2.6.0",
"codeception/codeception": "^4.1.5",
"codeception/module-asserts": "@dev",
"codeception/module-phpbrowser": "@dev",
"phpunit/phpunit": "^9.4",
"roave/infection-static-analysis-plugin": "^1.5",
"roave/security-advisories": "dev-master",
"spatie/phpunit-watcher": "^1.23",
"vimeo/psalm": "^4.3",
"yiisoft/yii-debug-api": "3.0.x-dev"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"config-plugin-output-dir": "runtime/build/config",
"config-plugin": {
"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"
}
]
}