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
| {
| "name": "topthink/think",
| "description": "the new thinkphp framework",
| "type": "project",
| "keywords": [
| "framework",
| "thinkphp",
| "ORM"
| ],
| "homepage": "http://thinkphp.cn/",
| "license": "Apache-2.0",
| "authors": [
| {
| "name": "liu21st",
| "email": "liu21st@gmail.com"
| }
| ],
| "require": {
| "php": ">=7.1.0",
| "topthink/framework": "^6.0.0",
| "topthink/think-orm": "^2.0",
| "topthink/think-multi-app": "^1.0",
| "lvht/geohash": "^1.1",
| "myclabs/php-enum": "^1.7",
| "overtrue/wechat": "^4.2",
| "qiniu/php-sdk": "^7.2",
| "aliyuncs/oss-sdk-php": "^2.3",
| "qcloud/cos-sdk-v5": "^2.0",
| "kosinix/grafika": "dev-master",
| "endroid/qrcode": "^3.7",
| "phpoffice/phpspreadsheet": "^1.13",
| "topthink/think-worker": "^3.0",
| "workerman/mysql": "^1.0",
| "alipaysdk/easysdk": "^2.2",
| "topthink/think-image": "^1.0"
| },
| "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": {
| "easywechat-composer/easywechat-composer": true
| }
| },
| "scripts": {
| "post-autoload-dump": [
| "@php think service:discover",
| "@php think vendor:publish"
| ]
| }
| }
|
|