forked from jeckman/YouTube-Downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·42 lines (42 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
{
"name": "jeckman/YouTube-Downloader",
"type": "library",
"description": "YouTube-Downloader",
"homepage": "https://github.com/jeckman/YouTube-Downloader",
"keywords": ["YouTube-Downloader", "YouTube", "Downloader"],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "John Eckman",
"email": "eckman.john@gmail.com",
"homepage": "http://www.openparenthesis.org/"
}
],
"config": {
"//platform": {"php": "5.6"},
"sort-packages": true
},
"require": {
"php": "^5.6 || ^7.0",
"ext-curl": "*",
"psr/log": "^1.1",
"psr/container": "^1.0",
"psr/http-message": "^1.0",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.4",
"mikey179/vfsStream": "^1.6",
"phpunit/phpunit": "^5.4.3 || ^6.0"
},
"autoload": {
"psr-4": {
"YoutubeDownloader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"YoutubeDownloader\\Tests\\": "tests/"
}
}
}