Update deps

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-10-18 16:29:36 +02:00
parent 6e40f1cf02
commit d87243873f
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
4 changed files with 860 additions and 446 deletions

2
.gitignore vendored
View File

@ -10,7 +10,7 @@ vendor
cache/ cache/
tpl_c/* tpl_c/*
!tpl_c/.gitkeep !tpl_c/.gitkeep
.php_cs.cache .php-cs-fixer.cache
.zanata-cache/ .zanata-cache/
# Temp files # Temp files

View File

@ -1,6 +1,6 @@
<?php <?php
return PhpCsFixer\Config::create() return (new PhpCsFixer\Config())
->setRiskyAllowed(true) ->setRiskyAllowed(true)
->setRules([ ->setRules([
'array_syntax' => [ 'array_syntax' => [
@ -8,16 +8,18 @@ return PhpCsFixer\Config::create()
], ],
'combine_consecutive_unsets' => true, 'combine_consecutive_unsets' => true,
'heredoc_to_nowdoc' => true, 'heredoc_to_nowdoc' => true,
'no_extra_consecutive_blank_lines' => [ 'no_extra_blank_lines' => [
'break', 'tokens' => [
'continue', 'break',
'extra', 'continue',
'return', 'extra',
'throw', 'return',
'use', 'throw',
'parenthesis_brace_block', 'use',
'square_brace_block', 'parenthesis_brace_block',
'curly_brace_block' 'square_brace_block',
'curly_brace_block'
]
], ],
'no_unreachable_default_argument_value' => true, 'no_unreachable_default_argument_value' => true,
'no_useless_else' => true, 'no_useless_else' => true,
@ -38,7 +40,8 @@ return PhpCsFixer\Config::create()
->exclude([ ->exclude([
'vendor', 'vendor',
'var', 'var',
'web' 'web',
'tpl_c'
]) ])
->in(__DIR__) ->in(__DIR__)
) )

View File

@ -63,12 +63,12 @@
"ircmaxell/password-compat": "dev-master", "ircmaxell/password-compat": "dev-master",
"roave/security-advisories": "dev-master", "roave/security-advisories": "dev-master",
"erusev/parsedown": "^1.7", "erusev/parsedown": "^1.7",
"egulias/email-validator": "~2.1", "egulias/email-validator": "^3.1",
"sabre/vobject": "~4.1" "sabre/vobject": "~4.1"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^9", "phpunit/phpunit": "^9",
"friendsofphp/php-cs-fixer": "~2.0" "friendsofphp/php-cs-fixer": "^3.2"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {

1273
composer.lock generated

File diff suppressed because it is too large Load Diff