Skip to content

Commit 5be03df

Browse files
committed
Run most recent PHP versions in the pipeline
That ensures we have support for the most recent versions.
1 parent ffbe7f2 commit 5be03df

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
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

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)