Skip to content

Commit 5e0feb4

Browse files
authored
Update CI to PHP 8.5 stable and fix test file naming (#258)
## Summary - Update CI matrix from PHP 8.5.0alpha4 to 8.5 stable - Rename `php84_exit.phpt` to `php85_exit.phpt` for consistency with other PHP 8.5 tests - Update `package.xml` to reflect the renamed test file ## Context PHP 8.5 was officially released on November 20, 2025. This PR updates the CI workflow to test against the stable release instead of the alpha version. The test file `php84_exit.phpt` was incorrectly named - it tests the PHP 8.5 feature where `exit` is represented as `AST_CALL`, so it should follow the `php85_*` naming convention used by the other PHP 8.5 tests (`php85_clone.phpt`, `php85_pipe_operator.phpt`, `php85_void_cast.phpt`). Signed-off-by: Marjo Wenzel van Lier <[email protected]>
1 parent 4935241 commit 5e0feb4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- PHP_VERSION: '8.2'
3636
- PHP_VERSION: '8.3'
3737
- PHP_VERSION: '8.4'
38-
- PHP_VERSION: '8.5.0alpha4'
38+
- PHP_VERSION: '8.5'
3939

4040
# Steps represent a sequence of tasks that will be executed as part of the job
4141
steps:

package.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,12 @@
124124
<file name="php82_encaps_list.phpt" role="test" />
125125
<file name="php82_readonly_class.phpt" role="test" />
126126
<file name="php84_dim_alternative_syntax.phpt" role="test" />
127-
<file name="php84_exit.phpt" role="test" />
127+
<file name="php84_property_hook.phpt" role="test" />
128128
<file name="php84_property_hook2.phpt" role="test" />
129129
<file name="php84_property_hook3.phpt" role="test" />
130130
<file name="php84_property_hook4.phpt" role="test" />
131-
<file name="php84_property_hook.phpt" role="test" />
132131
<file name="php85_clone.phpt" role="test" />
132+
<file name="php85_exit.phpt" role="test" />
133133
<file name="php85_pipe_operator.phpt" role="test" />
134134
<file name="php85_void_cast.phpt" role="test" />
135135
<file name="prop_doc_comments.phpt" role="test" />
File renamed without changes.

0 commit comments

Comments
 (0)