-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcomposer.json
62 lines (62 loc) · 1.65 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
{
"name": "xiaodi/tant",
"description": "Ant Design Vue Pro For ThinkPHP 6",
"type": "project",
"keywords": [
"framework",
"thinkphp",
"ORM"
],
"homepage": "https://www.xiaodim.com/",
"license": "Apache-2.0",
"prefer-stable": true,
"authors": [
{
"name": "xiaodi",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4.0",
"topthink/framework": "^6.0",
"topthink/think-orm": "^2.0",
"topthink/think-annotation": "1.1.0",
"topthink/think-migration": "^3.0",
"topthink/think-multi-app": "^1.0",
"casbin/think-authz": "^1.2",
"xiaodi/think-jwt": "3.0.0.beta.3",
"workerman/workerman": "^4.0",
"workerman/crontab": "^1.0"
},
"require-dev": {
"symfony/var-dumper": "^4.2",
"friendsofphp/php-cs-fixer": "^2.14",
"phpstan/phpstan": "0.12.*",
"composer/composer": "^2.0"
},
"autoload": {
"psr-4": {
"app\\": "app"
},
"psr-0": {
"": "extend/"
},
"files": [
"app/common.php",
"extend/TAnt/helper.php",
"vendor/topthink/framework/src/helper.php"
]
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"start": "php think run",
"analyze": "vendor/bin/phpstan analyse --memory-limit 300M -l 0 -c phpstan.neon ./app ./extend",
"post-autoload-dump": [
"@php think service:discover",
"@php think vendor:publish"
],
"cs-fix": "php-cs-fixer fix $1"
}
}