-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.01 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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
{
"name": "otkurbiz\/bytedance",
"description": "sdk for bytedance (douyin, toutiao, huoshan, xigua)",
"license": "MIT",
"authors": [
{
"name": "Alim",
"email": "alim@bulutbazar.com"
}
],
"require": {
"psr/simple-cache": "^1.0",
"illuminate/container": "5.2.32",
"guzzlehttp/guzzle": "~6.2.1",
"monolog/monolog": "^1.17",
"doctrine/cache": "~1.4",
"pimple/pimple": "3.0.2",
"symfony/psr-http-message-bridge": "1.0",
"symfony/http-foundation": "3.0.9"
},
"autoload": {
"psr-4": {
"OtkurBiz\\ByteDance\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"overtrue/phplint": "^1.2"
},
"extra": {
"laravel": {
"providers": [
"OtkurBiz\\ByteDance\\ServiceProvider"
],
"aliases": {
"ByteDance": "Overtrue\\ByteDance\\Facade"
}
}
}
}