Skip to content

Commit 10e5270

Browse files
committed
Run most recent PHP versions in the pipeline
That ensures we have support for the most recent versions. I removed the PHPT files from the list of files PHPStan checks. That's because I want to convert the PHPT files into Pest files, so it runs faster with a better way of debugging things.
1 parent ffbe7f2 commit 10e5270

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
php-version:
1616
- "8.1"
1717
- "8.2"
18+
- "8.3"
19+
- "8.4"
20+
- "8.5"
1821

1922
steps:
2023
- name: Checkout

phpstan.neon.dist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ parameters:
55
- tests/
66
fileExtensions:
77
- php
8-
- phpt

tests/integration/stringify-declared.phpt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,17 @@ declare(strict_types=1);
55

66
require 'vendor/autoload.php';
77

8+
use Respect\Stringifier\Helpers\ObjectHelper;
9+
810
outputMultiple(
911
Traversable::class,
1012
ArrayIterator::class,
1113
BasicEnumeration::class,
12-
Respect\Stringifier\Helpers\ObjectHelper::class,
14+
ObjectHelper::class,
1315
);
1416
?>
1517
--EXPECT--
1618
`Traversable`
1719
`ArrayIterator`
1820
`BasicEnumeration`
19-
`Respect\Stringifier\Helpers\ObjectHelper`
21+
`Respect\Stringifier\Helpers\ObjectHelper`

0 commit comments

Comments
 (0)