-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 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
{
"name": "any-downloader/youtube-downloader",
"type": "library",
"description": "Extract & download video, audio, subtitles from YouTube",
"keywords": ["downloader","video downloader","music downloader","youtube downloader","video to text","youtube to text"],
"homepage": "https://iwannacode.net",
"license": "MIT",
"authors": [
{
"name": "Oleksandr Pinchuk",
"email": "[email protected]",
"homepage": "https://iwannacode.net",
"role": "Developer"
}
],
"require": {
"php": ">=7.2.5",
"any-downloader/download-manager": "*",
"symfony/http-client": ">=5.3.3",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "9.5.x-dev"
},
"autoload": {
"psr-4": {
"AnyDownloader\\YouTubeDownloader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AnyDownloader\\YouTubeDownloader\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev"
}