Skip to content

Commit ff45abe

Browse files
committed
update dependencies
1 parent 4a770dc commit ff45abe

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

composer.json

+9-6
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@
4040
"php-service-bus/common": "v5.1.*",
4141
"doctrine/annotations": "v1.13.*",
4242
"phpdocumentor/reflection-docblock": "v5.3.*",
43-
"symfony/property-access": "v5.4.*",
44-
"symfony/property-info": "v5.4.*",
45-
"symfony/serializer": "v5.4.*"
43+
"symfony/property-access": "v6.0.*",
44+
"symfony/property-info": "v6.0.*",
45+
"symfony/serializer": "v6.0.*"
4646
},
4747
"require-dev": {
4848
"php-service-bus/code-style-config": "v5.1.*",
4949
"phpunit/phpunit": "v9.5.*",
50-
"vimeo/psalm": "v4.13.*",
51-
"phpstan/phpstan": "v1.2.*",
50+
"vimeo/psalm": "v4.19.*",
51+
"phpstan/phpstan": "v1.4.*",
5252
"boesing/psalm-plugin-stringf": "v1.1.*"
5353
},
5454
"prefer-stable": true,
@@ -63,6 +63,9 @@
6363
"pre-commit": "PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix --allow-risky=yes && ./vendor/bin/psalm --config=psalm.xml && ./vendor/bin/phpstan analyse src --level 9 && ./vendor/bin/phpunit --configuration phpunit.xml --verbose"
6464
},
6565
"config": {
66-
"optimize-autoloader": true
66+
"optimize-autoloader": true,
67+
"allow-plugins": {
68+
"composer/package-versions-deprecated": true
69+
}
6770
}
6871
}

phpstan.neon

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
parameters:
22
checkMissingIterableValueType: false
33
checkGenericClassInNonGenericObjectType: false
4-
ignoreErrors:
5-
- '#Cannot cast mixed to int#'

src/Symfony/Extensions/PropertyNameConverter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function denormalize(string $propertyName): string
3939
'/_(.?)/',
4040
static function (array $matches): string
4141
{
42-
return \ucfirst((string) $matches[1]);
42+
return \ucfirst($matches[1]);
4343
},
4444
$propertyName
4545
);

0 commit comments

Comments
 (0)