-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
61 lines (61 loc) · 1.55 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
{
"name": "xiaodi/think-skeleton",
"description": "Skeleton For ThinkPHP 6",
"type": "project",
"keywords": [
"framework",
"thinkphp",
"ORM"
],
"minimum-stability": "dev",
"homepage": "http://thinkphp.cn/",
"license": "Apache-2.0",
"authors": [
{
"name": "xiaodi",
"email": "liangjinbiao@live.com"
}
],
"require": {
"php": ">=7.1.0",
"topthink/framework": "^6.0.0",
"topthink/think-orm": "^2.0",
"topthink/think-annotation": "^1.0",
"xiaodi/think-whoops": "1.1.*",
"xiaodi/think-jwt": "0.5.*",
"xiaodi/think-permission": "0.5.*"
},
"require-dev": {
"symfony/var-dumper": "^4.2",
"friendsofphp/php-cs-fixer": "^2.14",
"phpstan/phpstan": "^0.11.19",
"topthink/think-trace":"^1.0"
},
"autoload": {
"psr-4": {
"app\\": "app",
"extend\\": "extend"
},
"psr-0": {
"": "extend/"
}
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"start": "php think run",
"analyze": "phpstan analyse --memory-limit 300M -l 0 -c phpstan.neon ./app ./route",
"post-autoload-dump": [
"@php think service:discover",
"@php think vendor:publish"
],
"cs-fix": "php-cs-fixer fix $1"
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
}
}
}