Skip to content

Commit 072060d

Browse files
INI settings that are deprecated in PHP 8.3 are also deprecated in PHP 8.4 and PHP 8.5
1 parent 95569b4 commit 072060d

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
@@ -120,6 +120,30 @@ final class GlobalState
120120
'mbstring.internal_encoding' => true,
121121
'oci8.old_oci_close_semantics' => true,
122122
],
123+
124+
'8.4' => [
125+
'auto_detect_line_endings' => true,
126+
'filter.default' => true,
127+
'iconv.input_encoding' => true,
128+
'iconv.output_encoding' => true,
129+
'iconv.internal_encoding' => true,
130+
'mbstring.http_input' => true,
131+
'mbstring.http_output' => true,
132+
'mbstring.internal_encoding' => true,
133+
'oci8.old_oci_close_semantics' => true,
134+
],
135+
136+
'8.5' => [
137+
'auto_detect_line_endings' => true,
138+
'filter.default' => true,
139+
'iconv.input_encoding' => true,
140+
'iconv.output_encoding' => true,
141+
'iconv.internal_encoding' => true,
142+
'mbstring.http_input' => true,
143+
'mbstring.http_output' => true,
144+
'mbstring.internal_encoding' => true,
145+
'oci8.old_oci_close_semantics' => true,
146+
],
123147
];
124148

125149
/**

0 commit comments

Comments
 (0)