File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ final class PhpIniCheck extends BaseCommand
41
41
*
42
42
* @var string
43
43
*/
44
- protected $ description = 'Check your php.ini values. ' ;
44
+ protected $ description = 'Check your php.ini values in production environment . ' ;
45
45
46
46
/**
47
47
* The Command's usage
Original file line number Diff line number Diff line change @@ -124,9 +124,11 @@ public static function checkIni(): array
124
124
'log_errors ' => [],
125
125
'error_log ' => [],
126
126
'default_charset ' => ['recommended ' => 'UTF-8 ' ],
127
+ 'max_execution_time ' => ['remark ' => 'The default is 30. ' ],
127
128
'memory_limit ' => ['remark ' => '> post_max_size ' ],
128
129
'post_max_size ' => ['remark ' => '> upload_max_filesize ' ],
129
130
'upload_max_filesize ' => ['remark ' => '< post_max_size ' ],
131
+ 'max_input_vars ' => ['remark ' => 'The default is 1000. ' ],
130
132
'request_order ' => ['recommended ' => 'GP ' ],
131
133
'variables_order ' => ['recommended ' => 'GPCS ' ],
132
134
'date.timezone ' => ['recommended ' => 'UTC ' ],
@@ -135,6 +137,7 @@ public static function checkIni(): array
135
137
'opcache.enable_cli ' => [],
136
138
'opcache.jit ' => [],
137
139
'opcache.jit_buffer_size ' => [],
140
+ 'zend.assertions ' => ['recommended ' => '-1 ' ],
138
141
];
139
142
140
143
$ output = [];
You can’t perform that action at this time.
0 commit comments