Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Kolb committed Nov 26, 2023
1 parent 3032deb commit 181f99d
Show file tree
Hide file tree
Showing 8 changed files with 325 additions and 413 deletions.
13 changes: 10 additions & 3 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

// Automatically adds trailing commas in multiline
'trailing_comma_in_multiline' => [
'elements' =>[
'elements' => [
'arrays',
'arguments',
'parameters',
Expand All @@ -33,6 +33,13 @@
'less_and_greater' => false,
'always_move_variable' => true,
],

// Add spaces around union and intersection types
'types_spaces' => [
'space' => 'single',
],

// Nullable types should be explicit even with default values
'nullable_type_declaration_for_default_null_value' => false,
])
->setFinder($finder)
;
->setFinder($finder);
13 changes: 7 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
"type": "symfony-bundle",
"require": {
"php": "8.2.*|8.3.*",
"doctrine/dbal": "^3.4.0",
"symfony/framework-bundle": "^6.3",
"symfony/serializer": "^6.3",
"doctrine/dbal": "^3.4.0"
"symfony/serializer": "^6.3"
},
"require-dev": {
"vimeo/psalm": "^4.12",
"friendsofphp/php-cs-fixer": "^3.3",
"friendsofphp/php-cs-fixer": "^3.40",
"infection/infection": "^0.26.15",
"phpunit/phpunit": "^9.5",
"infection/infection": "^0.26.15"
"vimeo/psalm": "^5.16"
},
"autoload": {
"psr-4": {
Expand All @@ -34,6 +34,7 @@
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
},
"sort-packages": true
}
}
Loading

0 comments on commit 181f99d

Please sign in to comment.