alltube/composer.json

127 lines
3.3 KiB
JSON
Raw Permalink 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",
2020-07-05 11:58:50 +02:00
"license": "GPL-3.0-only",
"type": "project",
2020-07-05 11:58:50 +02:00
"authors": [
{
"name": "Pierre Rudloff",
"email": "contact@rudloff.pro",
"homepage": "https://rudloff.pro/",
"role": "Developer"
},
{
"name": "Olivier Haquette",
"email": "contact@olivierhaquette.fr",
2022-02-17 21:59:38 +01:00
"homepage": "https://ographik.fr/",
2020-07-05 11:58:50 +02:00
"role": "Designer"
}
],
2016-08-20 13:07:31 +02:00
"require": {
"php": ">=7.4",
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",
"cweagans/composer-patches": "^1.7",
"j0k3r/httplug-ssrf-plugin": "^2.0",
"jawira/case-converter": "^3.4",
"jean85/pretty-package-versions": "^1.3",
2022-02-06 18:43:08 +01:00
"mathmarques/smarty-view": "^1.2",
2020-10-20 01:24:36 +02:00
"oomphinc/composer-installers-extender": "^2.0",
"paragonie/csp-builder": "^2.5",
"rinvex/countries": "^7.3",
2021-05-13 13:03:10 +02:00
"rudloff/alltube-library": "^0.1.3",
2022-01-26 23:53:14 +01:00
"symfony/finder": "^5.4",
"symfony/translation": "^4.0",
"symfony/yaml": "^4.0",
"webfontkit/open-sans": "^1.0",
"yt-dlp/yt-dlp": "^2023.03",
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": "^3.0",
"enlightn/security-checker": "^1.4",
"ergebnis/composer-normalize": "^2.20",
"insite/composer-dangling-locked-deps": "^0.2.1",
"junker/debugbar-smarty": "^0.1.0",
2021-02-07 12:24:16 +01:00
"kitchenu/slim-debugbar": "^1.1",
2021-02-06 15:00:26 +01:00
"maximebf/debugbar": "^1.16",
"php-mock/php-mock-mockery": "^1.3",
"phpro/grumphp": "^1.3",
2021-02-07 12:42:03 +01:00
"phpstan/phpstan": "^0.12.72",
"phpunit/phpunit": "^9.5",
2022-01-27 00:03:37 +01:00
"povils/phpmnd": "^2.5",
2019-11-29 23:09:09 +01:00
"smarty-gettext/smarty-gettext": "^1.6",
"squizlabs/php_codesniffer": "^3.5",
2022-01-26 23:53:14 +01:00
"symfony/error-handler": "^5.4",
"symfony/var-dumper": "^5.4"
2016-08-20 13:07:31 +02:00
},
"repositories": [
{
"type": "package",
"package": {
"name": "yt-dlp/yt-dlp",
"version": "2023.03.04",
"dist": {
"type": "tar",
"url": "https://github.com/yt-dlp/yt-dlp/releases/download/2023.03.04/yt-dlp.tar.gz"
}
}
}
],
"autoload": {
"psr-4": {
"Alltube\\": "classes/"
}
},
"autoload-dev": {
"psr-4": {
"Alltube\\Test\\": "tests/"
}
},
2020-07-05 11:58:50 +02:00
"config": {
2022-06-28 23:05:34 +02:00
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"ergebnis/composer-normalize": true,
"insite/composer-dangling-locked-deps": true,
"oomphinc/composer-installers-extender": true,
2023-03-03 00:11:28 +01:00
"php-http/discovery": true,
2022-06-28 23:05:34 +02:00
"phpro/grumphp": true
},
2020-07-05 11:58:50 +02:00
"platform": {
"php": "7.4.33"
2020-07-05 11:58:50 +02:00
},
"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"
],
"patches": {}
2020-10-20 01:24:36 +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
}