-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
62 lines (62 loc) · 1.69 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": "haxibiao/breeze",
"description": "Haxibiao 架构的基础包,从用户认证到基本内容社交系统,长视频短视频媒体内容系统...",
"license": "MIT",
"authors": [
{
"name": "ivan",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.3",
"laravel/framework": "^8.0",
"laravel/ui": "^3.2",
"laravel/nova": "*",
"laravel/scout": "^9.2",
"intervention/image": "^2.7",
"http-interop/http-factory-guzzle": "^1.2",
"meilisearch/meilisearch-php": "^0.18.3",
"freyo/flysystem-qcloud-cos-v5": "^2.0",
"league/flysystem-aws-s3-v3": "^1.0",
"league/flysystem-cached-adapter": "~1.0",
"nuwave/lighthouse": "^5.12",
"mll-lab/laravel-graphql-playground": "^2.1",
"laravelcollective/html": "^6.2",
"haxibiao/content": "*",
"haxibiao/helpers": "*",
"haxibiao/sns": "*",
"haxibiao/wallet": "*",
"haxibiao/store": "*",
"haxibiao/question": "*",
"haxibiao/task": "*"
},
"repositories": {
"nova": {
"type": "vcs",
"url": "https://code.haxibiao.cn/web/nova.git"
}
},
"autoload": {
"psr-4": {
"Haxibiao\\Breeze\\": "src/"
},
"classmap": [
"database/seeders/"
]
},
"autoload-dev": {
"classmap": [
"database/factories/",
"tests/"
]
},
"extra": {
"laravel": {
"providers": [
"Haxibiao\\Breeze\\BreezeServiceProvider"
]
}
}
}