-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.67 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
56
57
{
"name": "darkwob/youtube-mp3-converter",
"description": "A powerful YouTube to MP3 converter with playlist support, progress tracking, and advanced features",
"type": "library",
"keywords": [
"youtube",
"mp3",
"converter",
"playlist",
"downloader",
"youtube-music",
"audio-converter",
"redis",
"progress-tracking",
"async"
],
"homepage": "https://github.com/darkwob/youtube-mp3-converter",
"license": "MIT",
"authors": [
{
"name": "darkwob",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"symfony/process": "^5.4|^6.0",
"guzzlehttp/guzzle": "^7.0",
"ext-json": "*"
},
"suggest": {
"ext-fileinfo": "Required for file type detection",
"ext-curl": "Required for downloading videos",
"ext-redis": "Optional: For Redis-based progress tracking",
"predis/predis": "Alternative Redis client if ext-redis is not available"
},
"autoload": {
"psr-4": {
"Darkwob\\YoutubeMp3Converter\\": "src/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"support": {
"issues": "https://github.com/darkwob/youtube-mp3-converter/issues",
"source": "https://github.com/darkwob/youtube-mp3-converter",
"docs": "https://github.com/darkwob/youtube-mp3-converter/wiki"
}
}