alltube/composer.json

77 lines
1.6 KiB
JSON
Raw Normal View History

2015-04-11 22:08:24 +02:00
{
2016-02-13 16:20:25 +01:00
"name": "rudloff/alltube",
"description": "HTML GUI for youtube-dl",
"license": "GPL-3.0",
"homepage": "http://alltubedownload.net/",
"type": "project",
"require": {
"smarty/smarty": "~3.1.29",
2016-08-13 11:59:24 +02:00
"rg3/youtube-dl": "~2016.08.12",
2016-07-27 02:23:24 +02:00
"slim/slim": "~3.5.0",
2016-04-01 00:45:44 +02:00
"mathmarques/smarty-view": "~1.1.0",
2016-06-06 03:12:27 +02:00
"symfony/yaml": "~3.1.0",
"symfony/process": "~3.1.0",
"ptachoire/process-builder-chain": "~1.2.0",
2016-04-12 14:52:00 +02:00
"ffmpeg/ffmpeg": "dev-release",
2016-04-12 21:13:43 +02:00
"rudloff/smarty-plugin-noscheme": "~0.1.0",
"rudloff/rtmpdump-bin": "~2.3"
2016-02-13 16:20:25 +01:00
},
"require-dev": {
2016-08-01 03:16:33 +02:00
"symfony/var-dumper": "~3.1.0",
2016-08-01 12:28:35 +02:00
"squizlabs/php_codesniffer": "~2.6.2",
2016-08-19 00:29:41 +02:00
"phpunit/phpunit": "~5.5.2"
2016-02-13 16:20:25 +01:00
},
"extra": {
"paas": {
"nginx-includes": [
"nginx.conf"
]
}
},
"repositories": [{
"type": "package",
"package": {
"name": "rg3/youtube-dl",
2016-08-13 11:59:24 +02:00
"version": "2016.08.12",
2016-02-13 16:20:25 +01:00
"source": {
"url": "https://github.com/rg3/youtube-dl.git",
"type": "git",
2016-08-13 11:59:24 +02:00
"reference": "2016.08.12"
2016-02-13 16:20:25 +01:00
}
}
}, {
"type": "package",
"package": {
"name": "ffmpeg/ffmpeg",
2016-04-12 14:52:00 +02:00
"version": "dev-release",
2016-02-13 16:20:25 +01:00
"dist": {
"url": "http://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz",
"type": "xz"
},
"bin": [
"ffmpeg"
]
}
}],
"authors": [{
"name": "Pierre Rudloff",
"email": "contact@rudloff.pro",
"homepage": "https://rudloff.pro/",
"role": "Developer"
2016-02-13 16:21:46 +01:00
}, {
"name": "Olivier Haquette",
"email": "contact@olivierhaquette.fr",
"homepage": "http://olivierhaquette.fr/",
"role": "Designer"
2016-02-13 16:20:25 +01:00
}],
"autoload": {
"psr-4": {
"Alltube\\": "classes/",
"Alltube\\Controller\\": "controllers/"
}
2016-02-27 00:01:15 +01:00
},
"config": {
"secure-http": false
2016-02-13 16:20:25 +01:00
}
2015-04-11 22:08:24 +02:00
}