Skip to content

Commit be0748c

Browse files
authored
Merge pull request #14 from matsuo/add-support-for-php84-and-php85
2 parents 7b0750c + 014a4c9 commit be0748c

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
php-version: [ '8.0', '8.1', '8.2', '8.3' ]
16+
php-version: [ '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ]
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
- name: Set up PHP ${{ matrix.php-version }}
2020
uses: shivammathur/setup-php@v2
2121
with:

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup PHP
2323
uses: shivammathur/setup-php@v2
2424
with:
25-
php-version: '8.3'
25+
php-version: '8.5'
2626

2727
- name: Install PHPStan
2828
run: composer require --dev phpstan/phpstan

tests/AllTests.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
/*
3838
* Files needed by PhpUnit
3939
*/
40-
require_once 'PHPUnit/Autoload.php';
41-
require_once 'PHPUnit/TextUI/TestRunner.php';
42-
require_once 'PHPUnit/Extensions/PhptTestSuite.php';
40+
require_once 'PHPUnit/Autoload.php'; /** @phpstan-ignore requireOnce.fileNotFound */
41+
require_once 'PHPUnit/TextUI/TestRunner.php'; /** @phpstan-ignore requireOnce.fileNotFound */
42+
require_once 'PHPUnit/Extensions/PhptTestSuite.php'; /** @phpstan-ignore requireOnce.fileNotFound */
4343
}
4444

4545
/**

0 commit comments

Comments
 (0)