-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
137 lines (137 loc) · 3.24 KB
/
composer.json
File metadata and controls
137 lines (137 loc) · 3.24 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
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "kriss/webman-basic",
"type": "project",
"keywords": [
"webman template"
],
"homepage": "https://github.com/krissss/webman-basic",
"license": "MIT",
"description": "High performance HTTP Service Framework.",
"authors": [
{
"name": "kriss",
"email": "[email protected]",
"homepage": "https://github.com/krissss",
"role": "Maintainer"
}
],
"repositories": {
},
"require": {
"php": ">=8.2",
"ext-json": "*",
"kriss/composer-assets-plugin": "^1.0",
"kriss/php-notification": "^1.2",
"robmorgan/phinx": "^0.16.2",
"symfony/translation": "^7.0",
"webman-tech/components-monorepo": "^5.0",
"webman-tech/docker": "^2.3",
"webman-tech/laravel-monorepo": "^12.0",
"webman/console": "^2.1",
"webman/event": "^1.0",
"webman/multi-session": "^2.1",
"webman/redis-queue": "^2.1",
"workerman/webman-framework": "^2.1"
},
"require-dev": {
"pestphp/pest": "^3.8",
"phpstan/phpstan": "^2.1",
"symfony/var-dumper": "^7.0"
},
"suggest": {
"ext-event": "For better performance",
"ext-redis": "For redis use",
"ramsey/uuid": "For uuid use",
"symfony/cache": "For PSR6 cache use"
},
"_comment": [
"basic From walkor/webman Version 2.1.6"
],
"extra": {
"assets-dir": "public/assets",
"assets-pkgs": [
{
"type": "npm",
"name": "amis",
"version": "6.7.0",
"only_files": [
"sdk/thirds",
"sdk/sdk.css",
"sdk/helper.css",
"sdk/iconfont.css",
"sdk/sdk.js",
"sdk/charts.js"
]
},
{
"type": "npm",
"name": "history",
"version": "4.10.1",
"only_files": [
"umd/history.min.js"
]
},
{
"type": "npm",
"name": "bootstrap",
"version": "3.4.1",
"only_files": [
"dist/css/bootstrap.min.css",
"dist/css/bootstrap.min.css.map"
]
}
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"kriss/composer-assets-plugin": true,
"pestphp/pest-plugin": true,
"php-http/discovery": false
}
},
"autoload": {
"psr-4": {
"app\\": "./app",
"support\\": "./support",
"Tests\\": "./tests",
"Dev\\PHPStan\\": "./resource/phpstan/src"
}
},
"scripts": {
"post-package-install": [
"support\\Plugin::install"
],
"post-package-update": [
"support\\Plugin::install"
],
"pre-package-uninstall": [
"support\\Plugin::uninstall"
],
"post-install-cmd": [
"Composer\\Config::disableProcessTimeout",
"php artisan environment:ci"
],
"post-autoload-dump": [
"support\\facade\\Composer::postAutoloadDump"
],
"dev": [
"Composer\\Config::disableProcessTimeout",
"php start.php start"
],
"dev-win": [
"Composer\\Config::disableProcessTimeout",
"php windows.php"
],
"phinx": "phinx",
"analyse": [
"Composer\\Config::disableProcessTimeout",
"phpstan analyse --memory-limit=4G -v"
],
"analyse-raw": [
"Composer\\Config::disableProcessTimeout",
"phpstan analyse --memory-limit=4G -v --error-format=raw"
],
"test": "pest"
}
}