alltube/composer.json

107 lines
2.8 KiB
JSON
Raw Normal View History

2015-04-11 22:08:24 +02:00
{
2016-08-20 13:07:31 +02:00
"name": "rudloff/alltube",
"description": "HTML GUI for youtube-dl",
"license": "GPL-3.0-only",
2016-08-20 13:07:31 +02:00
"homepage": "http://alltubedownload.net/",
"type": "project",
"require": {
2019-11-29 23:09:09 +01:00
"ext-xsl": "*",
2017-05-02 17:04:55 +02:00
"aura/session": "~2.1.0",
"barracudanetworks/archivestream-php": "~1.0.5",
2019-11-29 23:09:09 +01:00
"guzzlehttp/guzzle": "~6.3.0",
"jawira/case-converter": "^1.2",
2019-11-29 23:09:09 +01:00
"mathmarques/smarty-view": "~1.1.0",
"php-mock/php-mock-mockery": "~1.3.0",
"rinvex/countries": "~3.1.0",
"slim/slim": "~3.12.1",
2019-11-29 23:15:03 +01:00
"symfony/process": "^5.0",
"symfony/translation": "^5.0",
"symfony/yaml": "^5.0",
2019-11-29 23:09:09 +01:00
"zonuexe/http-accept-language": "~0.4.1"
2016-08-20 13:07:31 +02:00
},
"require-dev": {
2019-11-29 23:09:09 +01:00
"anam/phantomjs-linux-x86-binary": "~2.1.1",
"ffmpeg/ffmpeg": "^4.1",
"heroku/heroku-buildpack-php": "^162.0",
"phpstan/phpstan": "~0.9.2",
2019-11-30 14:08:18 +01:00
"phpunit/phpunit": "^8.4",
2019-11-29 23:09:09 +01:00
"rg3/youtube-dl": "^2019.09",
"roave/security-advisories": "dev-master",
2019-11-29 23:09:09 +01:00
"smarty-gettext/smarty-gettext": "^1.6",
"squizlabs/php_codesniffer": "^3.5",
2019-11-29 23:15:03 +01:00
"symfony/debug": "^4.4",
"symfony/var-dumper": "^5.0"
2016-08-20 13:07:31 +02:00
},
"extra": {
"paas": {
"nginx-includes": [
2017-05-15 07:25:14 +02:00
"resources/nginx.conf"
2016-08-20 13:07:31 +02:00
]
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "rg3/youtube-dl",
"version": "2019.09.28",
"dist": {
"type": "zip",
"url": "https://github.com/rg3/youtube-dl/archive/2019.09.28.zip"
2016-08-20 13:07:31 +02:00
}
}
},
{
"type": "package",
"package": {
"name": "ffmpeg/ffmpeg",
"version": "4.1.4",
2016-08-20 13:07:31 +02:00
"dist": {
"url": "https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-4.1.4-amd64-static.tar.xz",
2016-08-20 13:07:31 +02: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\\Stream\\": "classes/streams/",
"Alltube\\Exception\\": "classes/exceptions/",
"Alltube\\Controller\\": "controllers/",
"Alltube\\Test\\": "tests/"
2016-08-20 13:07:31 +02:00
}
},
2016-10-19 19:13:44 +02:00
"scripts": {
"compile": "composer install --ignore-platform-reqs",
"update-locales": [
"tsmarty2c.php templates > i18n/template.pot",
"xgettext --omit-header -kt -j -o i18n/template.pot classes/*.php classes/*/*.php controllers/*"
],
"youtube-dl": "vendor/rg3/youtube-dl/youtube_dl/__main__.py"
},
"config": {
2019-11-29 23:09:09 +01:00
"sort-packages": true,
"platform": {
2019-11-29 23:06:31 +01:00
"php": "7.3.11"
}
2016-08-20 13:07:31 +02:00
}
2015-04-11 22:08:24 +02:00
}