Skip to content

Commit

Permalink
Update composer dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bwaidelich committed Dec 10, 2024
1 parent de75d0f commit c183e38
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan": "^2",
"squizlabs/php_codesniffer": "^4.0.x-dev",
"phpunit/phpunit": "^10.2"
"phpunit/phpunit": "^11"
},
"autoload": {
"psr-4": {
Expand Down
1 change: 1 addition & 0 deletions phpstan.neon.dist
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
parameters:
level: 9
treatPhpDocTypesAsCertain: false
paths:
- src
2 changes: 1 addition & 1 deletion tests/Unit/Types/TagsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public static function dataProvider_contains(): iterable

yield ['tags' => ['foo:bar'], 'tag' => 'key:bar2', 'expectedResult' => false];
yield ['tags' => ['foo:bar'], 'tag' => 'bar:bar', 'expectedResult' => false];
yield ['tags' => ['foo:bar', 'baz:foos'], 'bar' => 'notFoo:notBar', 'expectedResult' => false];
yield ['tags' => ['foo:bar', 'baz:foos'], 'tag' => 'notFoo:notBar', 'expectedResult' => false];
}

/**
Expand Down

0 comments on commit c183e38

Please sign in to comment.