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
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
- 8.2
- 8.3
- 8.4
- 8.5
dependencies_level:
- --prefer-lowest
- ""
Expand Down Expand Up @@ -88,6 +89,7 @@ jobs:
- name: Run PHPStan
run: vendor/bin/phpstan analyse --no-progress
- name: Run psalm
if: ${{!(matrix.php_version == '8.5' && matrix.dependencies_level == '--prefer-lowest')}}
run: vendor/bin/psalm
- name: Run phan
if: ${{ matrix.os != 'windows-latest' && matrix.php_version != '8.1' && matrix.php_version != '8.2' }}
Expand Down
3 changes: 3 additions & 0 deletions MO4/Library/PregLibrary.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@

use PHP_CodeSniffer\Exceptions\RuntimeException;

/**
* @psalm-api
*/
final class PregLibrary
{
/**
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"psalm/plugin-phpunit": "^0.19",
"sabre/event": ">= 5.1.6",
"symfony/filesystem": ">= 5.4.45",
"vimeo/psalm": ">= 6.0.0 < 6.15.0"
"vimeo/psalm": ">= 6.14.3 < 6.15.0"
},
"config": {
"allow-plugins": {
Expand Down
Loading