alltube/composer.json

111 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",
2020-07-05 11:58:50 +02:00
"type": "project",
2016-08-20 13:07:31 +02:00
"description": "HTML GUI for youtube-dl",
"homepage": "http://alltubedownload.net/",
2020-07-05 11:58:50 +02:00
"license": "GPL-3.0-only",
"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"
}
],
2016-08-20 13:07:31 +02:00
"require": {
2020-05-13 21:39:38 +02:00
"ext-intl": "*",
"ext-json": "*",
2020-05-14 10:54:13 +02:00
"aura/session": "^2.1",
"barracudanetworks/archivestream-php": "^1.0",
"consolidation/log": "^2.0",
"jawira/case-converter": "^3.4",
"jean85/pretty-package-versions": "^1.3",
2020-05-14 10:54:13 +02:00
"mathmarques/smarty-view": "^1.1",
2020-10-20 01:24:36 +02:00
"oomphinc/composer-installers-extender": "^2.0",
"paragonie/csp-builder": "^2.5",
2020-05-14 10:54:13 +02:00
"rinvex/countries": "^6.1",
"rudloff/alltube-library": "dev-develop",
"symfony/finder": "^5.0",
"symfony/translation": "^4.0",
"symfony/yaml": "^4.0",
"webfontkit/open-sans": "^1.0",
"ytdl-org/youtube-dl": "^2020.09",
2020-05-14 10:54:13 +02:00
"zonuexe/http-accept-language": "^0.4.1"
2016-08-20 13:07:31 +02:00
},
"require-dev": {
"consolidation/robo": "^2.1",
2020-07-05 11:58:50 +02:00
"ergebnis/composer-normalize": "^2.6",
"insite/composer-dangling-locked-deps": "^0.2.0",
"php-mock/php-mock-mockery": "^1.3",
"phpro/grumphp": "^1.0",
2020-05-13 22:28:05 +02:00
"phpstan/phpstan": "^0.12.25",
2019-11-30 14:08:18 +01:00
"phpunit/phpunit": "^8.4",
"sensiolabs/security-checker": "^6.0",
2019-11-29 23:09:09 +01:00
"smarty-gettext/smarty-gettext": "^1.6",
"squizlabs/php_codesniffer": "^3.5",
2020-05-13 22:57:25 +02:00
"symfony/error-handler": "^5.0",
"symfony/var-dumper": "^5.0"
2016-08-20 13:07:31 +02:00
},
2020-07-05 11:58:50 +02:00
"config": {
"platform": {
"php": "7.3.11"
},
"sort-packages": true
},
2020-10-20 01:24:36 +02:00
"extra": {
"installer-paths": {
"assets/{$name}": [
"webfontkit/open-sans"
],
"vendor/{$vendor}/{$name}/": [
"type:library"
]
},
"installer-types": [
"library"
]
},
2020-07-05 11:58:50 +02:00
"autoload": {
"psr-4": {
"Alltube\\": "classes/"
}
},
"autoload-dev": {
"psr-4": {
"Alltube\\Test\\": "tests/"
}
},
2016-08-20 13:07:31 +02:00
"repositories": [
{
"type": "package",
"package": {
"name": "ytdl-org/youtube-dl",
"version": "2020.09.20",
"dist": {
"type": "zip",
"url": "https://github.com/ytdl-org/youtube-dl/archive/2020.09.20.zip"
2016-08-20 13:07:31 +02:00
}
}
}
],
2016-10-19 19:13:44 +02:00
"scripts": {
"lint": "grumphp run --ansi",
"release": "robo release --ansi",
2020-09-27 19:50:12 +02:00
"test": [
"Composer\\Config::disableProcessTimeout",
"phpunit"
],
"update-locales": [
"tsmarty2c.php templates > i18n/template.pot",
2020-07-01 22:52:22 +02:00
"xgettext --omit-header -kt -j -o i18n/template.pot classes/*.php classes/*/*.php"
],
"youtube-dl": "vendor/ytdl-org/youtube-dl/youtube_dl/__main__.py"
2016-08-20 13:07:31 +02:00
}
2015-04-11 22:08:24 +02:00
}