2015-04-11 20:08:24 +00:00
|
|
|
{
|
2016-08-20 11:07:31 +00:00
|
|
|
"name": "rudloff/alltube",
|
|
|
|
"description": "HTML GUI for youtube-dl",
|
2018-01-20 11:00:52 +00:00
|
|
|
"license": "GPL-3.0-only",
|
2016-08-20 11:07:31 +00:00
|
|
|
"homepage": "http://alltubedownload.net/",
|
|
|
|
"type": "project",
|
|
|
|
"require": {
|
2017-12-05 20:02:57 +00:00
|
|
|
"slim/slim": "~3.9.2",
|
2016-08-20 11:07:31 +00:00
|
|
|
"mathmarques/smarty-view": "~1.1.0",
|
2017-12-06 12:34:12 +00:00
|
|
|
"symfony/yaml": "~3.4.1",
|
|
|
|
"symfony/process": "~3.4.1",
|
2017-09-28 22:05:37 +00:00
|
|
|
"guzzlehttp/guzzle": "~6.3.0",
|
2017-05-02 15:04:55 +00:00
|
|
|
"aura/session": "~2.1.0",
|
2017-05-29 17:01:20 +00:00
|
|
|
"barracudanetworks/archivestream-php": "~1.0.5",
|
2017-05-29 19:11:59 +00:00
|
|
|
"smarty-gettext/smarty-gettext": "~1.5.1",
|
2017-05-31 14:26:00 +00:00
|
|
|
"zonuexe/http-accept-language": "~0.4.1",
|
2017-12-05 18:42:57 +00:00
|
|
|
"rinvex/country": "~3.1.0",
|
|
|
|
"php-mock/php-mock-mockery": "~1.2.0"
|
2016-08-20 11:07:31 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2017-12-06 12:34:12 +00:00
|
|
|
"symfony/var-dumper": "~3.4.1",
|
2017-12-20 10:22:45 +00:00
|
|
|
"squizlabs/php_codesniffer": "~3.2.2",
|
2017-12-05 20:02:57 +00:00
|
|
|
"phpunit/phpunit": "~6.5.2",
|
2017-10-29 22:51:45 +00:00
|
|
|
"doctrine/instantiator": "~1.0.0",
|
2018-01-25 11:56:09 +00:00
|
|
|
"ffmpeg/ffmpeg": "~3.4.1",
|
2018-01-25 14:10:11 +00:00
|
|
|
"rg3/youtube-dl": "2018.01.21",
|
2018-01-25 11:56:09 +00:00
|
|
|
"heroku/heroku-buildpack-php": "*",
|
|
|
|
"anam/phantomjs-linux-x86-binary": "~2.1.1"
|
2016-08-20 11:07:31 +00:00
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"paas": {
|
|
|
|
"nginx-includes": [
|
2017-05-15 05:25:14 +00:00
|
|
|
"resources/nginx.conf"
|
2016-08-20 11:07:31 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "package",
|
|
|
|
"package": {
|
|
|
|
"name": "rg3/youtube-dl",
|
2018-01-25 14:10:11 +00:00
|
|
|
"version": "2018.01.21",
|
2016-11-13 22:45:19 +00:00
|
|
|
"dist": {
|
2016-12-18 22:10:17 +00:00
|
|
|
"type": "zip",
|
2018-01-25 14:10:11 +00:00
|
|
|
"url": "https://github.com/rg3/youtube-dl/archive/2018.01.21.zip"
|
2016-08-20 11:07:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "package",
|
|
|
|
"package": {
|
|
|
|
"name": "ffmpeg/ffmpeg",
|
2017-12-23 18:22:50 +00:00
|
|
|
"version": "3.4.1",
|
2016-08-20 11:07:31 +00:00
|
|
|
"dist": {
|
2017-12-23 18:22:50 +00:00
|
|
|
"url": "https://johnvansickle.com/ffmpeg/releases/ffmpeg-3.4.1-64bit-static.tar.xz",
|
2016-08-20 11:07:31 +00:00
|
|
|
"type": "xz"
|
|
|
|
},
|
|
|
|
"bin": [
|
|
|
|
"ffmpeg"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Pierre Rudloff",
|
|
|
|
"email": "contact@rudloff.pro",
|
|
|
|
"homepage": "https://rudloff.pro/",
|
|
|
|
"role": "Developer"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Olivier Haquette",
|
|
|
|
"email": "contact@olivierhaquette.fr",
|
|
|
|
"homepage": "http://olivierhaquette.fr/",
|
|
|
|
"role": "Designer"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"Alltube\\": "classes/",
|
2017-12-05 15:06:57 +00:00
|
|
|
"Alltube\\Controller\\": "controllers/",
|
|
|
|
"Alltube\\Test\\": "tests/"
|
2016-08-20 11:07:31 +00:00
|
|
|
}
|
|
|
|
},
|
2016-10-19 17:13:44 +00:00
|
|
|
"scripts": {
|
2017-08-07 14:08:01 +00:00
|
|
|
"compile": "composer install --ignore-platform-reqs",
|
2017-11-10 12:04:14 +00:00
|
|
|
"update-locales": "tsmarty2c.php templates > i18n/template.pot",
|
|
|
|
"youtube-dl": "vendor/rg3/youtube-dl/youtube_dl/__main__.py"
|
2016-08-20 11:07:31 +00:00
|
|
|
}
|
2015-04-11 20:08:24 +00:00
|
|
|
}
|