We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85c2d8e commit 9a0c52dCopy full SHA for 9a0c52d
app/console
@@ -7,6 +7,11 @@
7
8
set_time_limit(0);
9
10
+// Disable the PHAR stream wrapper as it is insecure
11
+if (in_array('phar', stream_get_wrappers())) {
12
+ stream_wrapper_unregister('phar');
13
+}
14
+
15
// Ensure UTF-8 is used in string operations
16
setlocale(LC_CTYPE, 'C.UTF-8');
17
web/app.php
@@ -3,6 +3,11 @@
3
use Symfony\Component\HttpFoundation\Request;
4
use Symfony\Component\Debug\Debug;
5
6
0 commit comments