-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 1.02 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
{
"name": "uyson/dcat-aliyun-vod",
"alias": "",
"description": "Dcat Admin 阿里云点播管理插件",
"type": "library",
"keywords": ["dcat-admin", "extension"],
"homepage": "https://github.com/uyson/dcat-aliyun-vod",
"license": "MIT",
"authors": [
{
"name": "Alim",
"email": "394111180@qq.com"
}
],
"require": {
"php": ">=8.1.0",
"dcat/laravel-admin": "~2.0",
"alibabacloud/darabonba-openapi": "^0.2.8",
"alibabacloud/vod-20170321": "^2.16"
},
"autoload": {
"psr-4": {
"Uyson\\DcatAdmin\\AliyunVod\\": "src/"
}
},
"extra": {
"dcat-admin": "Uyson\\DcatAdmin\\AliyunVod\\DcatAliyunVodServiceProvider",
"laravel": {
"providers": [
"Uyson\\DcatAdmin\\AliyunVod\\DcatAliyunVodServiceProvider"
],
"aliases": {
"Vod": "Uyson\\DcatAdmin\\AliyunVod\\Support\\Facades\\Vod"
}
}
}
}