forked from DevinNorgarb/devtube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.08 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
{
"name": "devswebdev/devtube",
"description": "A Laravel package for downloading videos from the net by simply passing a URL",
"type": "library",
"version": "1.0.5",
"require": {
"laravel/framework": "~5",
"illuminate/support": "~5",
"masih/youtubedownloader": "~2.9.0"
},
"require-dev": {
"vlucas/phpdotenv": "^2.4",
"orchestra/testbench": "^3.4"
},
"keywords": [
"devtube",
"devswebdev",
"laravel",
"downloader",
"youtube-dl",
"laravel-package",
"mp4",
"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"
]
}
}
}