alltube/composer.json

89 lines
2.2 KiB
JSON
Raw Normal View History

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",
2017-09-28 22:05:37 +00:00
"symfony/yaml": "~3.3.9",
"symfony/process": "~3.3.9",
2016-08-20 11:07:31 +00:00
"ptachoire/process-builder-chain": "~1.2.0",
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",
"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-10-26 08:45:08 +00:00
"rinvex/country": "~3.1.0"
2016-08-20 11:07:31 +00:00
},
"require-dev": {
2017-09-28 22:05:37 +00:00
"symfony/var-dumper": "~3.3.9",
"squizlabs/php_codesniffer": "~3.1.0",
2016-12-03 12:59:53 +00:00
"phpunit/phpunit": "~5.7.2",
"ffmpeg/ffmpeg": "dev-release",
2017-10-26 08:14:52 +00:00
"rg3/youtube-dl": "~2017.10.20",
"rudloff/rtmpdump-bin": "~2.3.0",
"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-10-26 08:14:52 +00:00
"version": "2017.10.20",
"dist": {
"type": "zip",
2017-10-26 08:14:52 +00:00
"url": "https://github.com/rg3/youtube-dl/archive/2017.10.20.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": {
"compile": "composer install --ignore-platform-reqs",
2017-09-29 09:49:19 +00:00
"update-locales": "tsmarty2c.php templates > i18n/template.pot"
2016-08-20 11:07:31 +00:00
}
2015-04-11 20:08:24 +00:00
}