forked from joedawson/youtube
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.25 KB
/
Copy pathcomposer.json
File metadata and controls
51 lines (51 loc) · 1.25 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "leknoppix/youtube",
"description": "Upload a video to YouTube with Laravel 5.",
"license": "MIT",
"authors": [
{
"name": "Joe Dawson",
"email": "hi@joedawson.me"
}, {
"name": "Pascal Canadas",
"email": "pascal@mirandais.ovh"
}
],
"require": {
"php": "^7.0|^8.0",
"illuminate/support": "^5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"google/apiclient": "^2.2",
"nesbot/carbon": "^1.22|^2.63"
},
"require-dev": {
"orchestra/testbench": "~3.2",
"phpunit/phpunit": "~5.0",
"phpunit/phpcov": "~3.0"
},
"autoload": {
"psr-4": {
"Leknoppix\\Youtube\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Leknoppix\\Youtube\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Leknoppix\\Youtube\\YoutubeServiceProvider"
],
"aliases": {
"Youtube": "Leknoppix\\Youtube\\Facades\\Youtube"
}
}
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}