-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.84 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 1.84 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
{
"name": "topthink/think",
"description": "the new thinkphp framework",
"type": "project",
"keywords": [
"framework",
"thinkphp",
"ORM"
],
"homepage": "https://www.thinkphp.cn/",
"license": "Apache-2.0",
"authors": [
{
"name": "liu21st",
"email": "liu21st@gmail.com"
},
{
"name": "yunwuxin",
"email": "448901948@qq.com"
}
],
"require": {
"php": ">=8.2.0",
"topthink/framework": "^v8.1.3",
"topthink/think-orm": "^v3.0.34",
"topthink/think-filesystem": "^v2.0.3",
"topthink/think-view": "^v2.0.5",
"ext-curl": "*",
"ext-json": "*",
"ext-gd": "*",
"ext-openssl": "*",
"ramsey/uuid": "^4.0",
"topthink/think-migration": "^v3.1.1",
"firebase/php-jwt": "^v6.11.1",
"symfony/http-client": "^7.1",
"nyholm/psr7": "^1.8",
"guzzlehttp/guzzle": "^7.9.3",
"topthink/think-captcha": "^v3.0.11",
"voku/anti-xss": "^4.1.42",
"web-auth/webauthn-framework": "^5.0",
"vectorface/googleauthenticator": "^v3.4",
"topthink/think-validate": "v3.0.7",
"seanhayes-com/laravel-hcaptcha": "^1.2",
"usarise/turnstile": "^0.7.1",
"ext-bcmath": "*"
},
"require-dev": {
"symfony/var-dumper": ">=4.2",
"topthink/think-trace": "^1.0"
},
"autoload": {
"psr-4": {
"app\\": "app"
},
"psr-0": {
"": "extend/"
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"post-autoload-dump": [
"@php think service:discover",
"@php think vendor:publish"
]
}
}