Skip to content

Commit 084afe3

Browse files
Merge branch '9.6' into 10.5
* 9.6: INI settings that are deprecated in PHP 8.3 are also deprecated in PHP 8.4 and PHP 8.5
2 parents e24fb46 + 072060d commit 084afe3

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/Util/GlobalState.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,30 @@ final class GlobalState
122122
'mbstring.internal_encoding' => true,
123123
'oci8.old_oci_close_semantics' => true,
124124
],
125+
126+
'8.4' => [
127+
'auto_detect_line_endings' => true,
128+
'filter.default' => true,
129+
'iconv.input_encoding' => true,
130+
'iconv.output_encoding' => true,
131+
'iconv.internal_encoding' => true,
132+
'mbstring.http_input' => true,
133+
'mbstring.http_output' => true,
134+
'mbstring.internal_encoding' => true,
135+
'oci8.old_oci_close_semantics' => true,
136+
],
137+
138+
'8.5' => [
139+
'auto_detect_line_endings' => true,
140+
'filter.default' => true,
141+
'iconv.input_encoding' => true,
142+
'iconv.output_encoding' => true,
143+
'iconv.internal_encoding' => true,
144+
'mbstring.http_input' => true,
145+
'mbstring.http_output' => true,
146+
'mbstring.internal_encoding' => true,
147+
'oci8.old_oci_close_semantics' => true,
148+
],
125149
];
126150

127151
/**

0 commit comments

Comments
 (0)