forked from zhuchunshu/SForum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·127 lines (127 loc) · 3.89 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
{
"name": "zhuchunshu/sforum",
"type": "project",
"keywords": [
"php",
"swoole",
"php-forum",
"hyperf",
"microservice",
"php-bbs"
],
"description": "SForum",
"license": "MIT",
"require": {
"php": ">=8.0",
"ext-iconv": "*",
"ext-json": "*",
"alchemy/zippy": "^1.0",
"doctrine/dbal": "^3.0",
"gai871013/ip-location": "^1.1",
"hassankhan/config": "^3.0",
"hyperf/async-queue": "3.0.*",
"hyperf/cache": "3.0.*",
"hyperf/command": "3.0.*",
"hyperf/config": "3.0.*",
"hyperf/config-center": "3.0.*",
"hyperf/crontab": "3.0.*",
"hyperf/database": "3.0.*",
"hyperf/db": "3.0.*",
"hyperf/db-connection": "3.0.*",
"hyperf/filesystem": "3.0.*",
"hyperf/framework": "3.0.*",
"hyperf/guzzle": "3.0.*",
"hyperf/http-server": "3.0.*",
"hyperf/logger": "3.0.*",
"hyperf/memory": "3.0.*",
"hyperf/model-cache": "3.0.*",
"hyperf/paginator": "3.0.*",
"hyperf/process": "3.0.*",
"hyperf/rate-limit": "3.0.*",
"hyperf/redis": "3.0.*",
"hyperf/session": "3.0.*",
"hyperf/socketio-server": "3.0.*",
"hyperf/translation": "3.0.*",
"hyperf/validation": "3.0.*",
"hyperf/view": "3.0.*",
"hyperf/view-engine": "3.0.*",
"hyperf/websocket-server": "3.0.*",
"jetbrains/phpstorm-stubs": "^2021.1",
"laravel/serializable-closure": "^1.3",
"overtrue/http": "^1.2",
"rakibtg/sleekdb": "^2.15",
"simplesoftwareio/simple-qrcode": "^4.2",
"zhuchunshu/whichbrowser-parser": "1.*",
"wikimedia/composer-merge-plugin": "^2.0",
"yansongda/pay": "~3.2.0",
"zhuchunshu/hyperf-auth": "3.0.*",
"zhuchunshu/hyperf-hashing": "3.0.*"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
,
"filp/whoops": "^2.13",
"friendsofphp/php-cs-fixer": "3.0",
"hyperf/devtool": "3.0.*",
"hyperf/ide-helper": "3.0.*",
"hyperf/testing": "3.0.*",
"hyperf/watcher": "3.0.*",
"mockery/mockery": "^1.0",
"phpstan/phpstan": "^0.12",
"swoole/ide-helper": "^4.5"
},
"suggest": {
"ext-openssl": "Required to use HTTPS.",
"ext-json": "Required to use JSON.",
"ext-pdo": "Required to use MySQL Client.",
"ext-pdo_mysql": "Required to use MySQL Client.",
"ext-redis": "Required to use Redis Client."
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers.php",
"app/Helpers/UserHelpers.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": true
},
"extra": {
"merge-plugin": {
"include": [
"app/Plugins/*/composer.json"
],
"recurse": false,
"replace": false,
"ignore-duplicates": false,
"merge-dev": false,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-autoload-dump": [
"rm -rf runtime/container",
"rm -rf runtime/view",
"php CodeFec"
],
"test": "co-phpunit -c phpunit.xml --colors=always",
"cs-fix": "php-cs-fixer fix $1",
"analyse": "phpstan analyse --memory-limit 300M -l 0 -c phpstan.neon ./app ./config",
"start": [
"Composer\\Config::disableProcessTimeout",
"php ./bin/hyperf.php CodeFec"
]
}
}