-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
55 lines (55 loc) · 1.33 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
{
"name": "devswebdev/devtube",
"description": "A Laravel package for downloading videos from the net by simply passing a URL",
"type": "library",
"version": "2.0.6",
"require": {
"laravel/framework": ">=5",
"illuminate/support": ">=5",
"masih/youtubedownloader": "~2.9.0",
"athlon1600/youtube-downloader": "^1.0",
"norkunas/youtube-dl-php": "^1.3"
},
"require-dev": {
"vlucas/phpdotenv": "^2.4",
"orchestra/testbench": "^3.4"
},
"keywords": [
"devtube",
"devswebdev",
"laravel",
"downloader",
"youtube-dl",
"laravel-package",
"mp4",
"mp3",
"video downloader",
"mp3 downloader",
"media downloader",
"youtube-downloader",
"laravel downloader",
"laravel youtube downloader"
],
"license": "MIT",
"authors": [{
"name": "DevinNorgarb",
"email": "[email protected]"
}],
"autoload": {
"psr-4": {
"DevsWebDev\\DevTube\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DevsWebDev\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"DevsWebDev\\DevTube\\DevTubeServiceProvider"
]
}
}
}