Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- 8.2
- 8.3
- 8.4
- 8.5
dependencies:
- "--prefer-lowest"
- ""
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"require": {
"php": "^8.2",
"phpspec/prophecy": "^1.8",
"phpunit/php-text-template": "^2.0 | ^3.0 | ^4.0"
"phpunit/php-text-template": "^2.0 | ^3.0 | ^4.0 | ^5.0"
},
"autoload": {
"psr-4": {
Expand Down
5 changes: 5 additions & 0 deletions psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<directory name="tests"/>
<ignoreFiles>
<directory name="vendor/phpunit"/>
<directory name="vendor/phpspec"/>
</ignoreFiles>
</projectFiles>
<issueHandlers>
Expand All @@ -23,6 +24,10 @@
<MissingOverrideAttribute errorLevel="suppress"/>
<UndefinedThisPropertyFetch errorLevel="suppress"/>
<ClassMustBeFinal errorLevel="suppress"/>
<InternalProperty errorLevel="suppress"/>
<InternalMethod errorLevel="suppress"/>
<MixedMethodCall errorLevel="suppress"/>
<UndefinedMagicMethod errorLevel="suppress"/>
</issueHandlers>
<plugins>
<pluginClass class="Psalm\PhpUnitPlugin\Plugin"/>
Expand Down