-
Notifications
You must be signed in to change notification settings - Fork 158
/
composer.json
44 lines (44 loc) · 1.12 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
{
"name": "norkunas/youtube-dl-php",
"type": "library",
"description": "youtube-dl / yt-dlp wrapper for php",
"keywords": ["youtube", "youtube-dl", "yt-dlp"],
"license": "MIT",
"authors": [
{
"name": "Tomas Norkūnas",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4.0",
"ext-json": "*",
"symfony/filesystem": "^4.4|^5.1|^6.0|^7.0",
"symfony/polyfill-php80": "^1.28",
"symfony/process": "^4.4|^5.1|^6.0|^7.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.11",
"php-cs-fixer/shim": "^3.60",
"phpstan/phpstan": "^1.11.8",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-strict-rules": "^1.6.0",
"symfony/phpunit-bridge": "^6.4.10"
},
"autoload": {
"psr-4": { "YoutubeDl\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"YoutubeDl\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}