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",
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
"homepage": "http://alltubedownload.net/",
|
|
|
|
"type": "project",
|
|
|
|
"require": {
|
|
|
|
"smarty/smarty": "~3.1.29",
|
2017-04-15 20:22:40 +00:00
|
|
|
"slim/slim": "~3.8.1",
|
2016-08-20 11:07:31 +00:00
|
|
|
"mathmarques/smarty-view": "~1.1.0",
|
2016-12-03 12:59:53 +00:00
|
|
|
"symfony/yaml": "~3.2.0",
|
|
|
|
"symfony/process": "~3.2.0",
|
2016-08-20 11:07:31 +00:00
|
|
|
"ptachoire/process-builder-chain": "~1.2.0",
|
2016-09-11 16:58:58 +00:00
|
|
|
"guzzlehttp/guzzle": "~6.2.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",
|
|
|
|
"rinvex/country": "~2.0.0"
|
2016-08-20 11:07:31 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2016-12-03 12:59:53 +00:00
|
|
|
"symfony/var-dumper": "~3.2.0",
|
2017-05-19 12:25:00 +00:00
|
|
|
"squizlabs/php_codesniffer": "~3.0.0",
|
2016-12-03 12:59:53 +00:00
|
|
|
"phpunit/phpunit": "~5.7.2",
|
2016-10-18 07:17:16 +00:00
|
|
|
"ffmpeg/ffmpeg": "dev-release",
|
2017-09-12 20:32:20 +00:00
|
|
|
"rg3/youtube-dl": "~2017.09.11",
|
2017-05-02 00:40:59 +00:00
|
|
|
"rudloff/rtmpdump-bin": "~2.3.0",
|
2017-01-02 10:23:35 +00:00
|
|
|
"heroku/heroku-buildpack-php": "*"
|
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",
|
2017-09-12 20:32:20 +00:00
|
|
|
"version": "2017.09.11",
|
2016-11-13 22:45:19 +00:00
|
|
|
"dist": {
|
2016-12-18 22:10:17 +00:00
|
|
|
"type": "zip",
|
2017-09-12 20:32:20 +00:00
|
|
|
"url": "https://github.com/rg3/youtube-dl/archive/2017.09.11.zip"
|
2016-08-20 11:07:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "package",
|
|
|
|
"package": {
|
|
|
|
"name": "ffmpeg/ffmpeg",
|
|
|
|
"version": "dev-release",
|
|
|
|
"dist": {
|
2017-03-02 22:10:02 +00:00
|
|
|
"url": "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-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/",
|
|
|
|
"Alltube\\Controller\\": "controllers/"
|
|
|
|
}
|
|
|
|
},
|
2016-10-19 17:13:44 +00:00
|
|
|
"scripts": {
|
2017-08-07 14:08:01 +00:00
|
|
|
"compile": "composer install --ignore-platform-reqs",
|
|
|
|
"update-locales": "vendor/bin/tsmarty2c.php templates > i18n/template.pot"
|
2016-08-20 11:07:31 +00:00
|
|
|
}
|
2015-04-11 20:08:24 +00:00
|
|
|
}
|