composer-normalize
This commit is contained in:
parent
b02e255cb4
commit
7e575e1bb2
3 changed files with 338 additions and 35 deletions
|
@ -1,9 +1,23 @@
|
|||
{
|
||||
"name": "rudloff/alltube",
|
||||
"description": "HTML GUI for youtube-dl",
|
||||
"license": "GPL-3.0-only",
|
||||
"homepage": "http://alltubedownload.net/",
|
||||
"type": "project",
|
||||
"description": "HTML GUI for youtube-dl",
|
||||
"homepage": "http://alltubedownload.net/",
|
||||
"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"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"ext-intl": "*",
|
||||
"ext-json": "*",
|
||||
|
@ -23,6 +37,7 @@
|
|||
},
|
||||
"require-dev": {
|
||||
"consolidation/robo": "^2.1",
|
||||
"ergebnis/composer-normalize": "^2.6",
|
||||
"php-mock/php-mock-mockery": "^1.3",
|
||||
"phpro/grumphp": "^0.18.0",
|
||||
"phpstan/phpstan": "^0.12.25",
|
||||
|
@ -33,6 +48,22 @@
|
|||
"symfony/error-handler": "^5.0",
|
||||
"symfony/var-dumper": "^5.0"
|
||||
},
|
||||
"config": {
|
||||
"platform": {
|
||||
"php": "7.3.11"
|
||||
},
|
||||
"sort-packages": true
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Alltube\\": "classes/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Alltube\\Test\\": "tests/"
|
||||
}
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
"type": "composer",
|
||||
|
@ -50,44 +81,14 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"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/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Alltube\\Test\\": "tests/"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "grumphp run --ansi",
|
||||
"test": "phpunit",
|
||||
"release": "robo release --ansi",
|
||||
"test": "phpunit",
|
||||
"update-locales": [
|
||||
"tsmarty2c.php templates > i18n/template.pot",
|
||||
"xgettext --omit-header -kt -j -o i18n/template.pot classes/*.php classes/*/*.php"
|
||||
],
|
||||
"youtube-dl": "vendor/ytdl-org/youtube-dl/youtube_dl/__main__.py"
|
||||
},
|
||||
"config": {
|
||||
"sort-packages": true,
|
||||
"platform": {
|
||||
"php": "7.3.11"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue