This commit is contained in:
MatteoPistorello 2022-02-10 11:13:50 +01:00
commit 4dfa15eda4
1 changed files with 9 additions and 2 deletions

View File

@ -50,7 +50,7 @@ $settings = [
'type' => 'version',
'description' => '7.4.x - 8.0.x',
'minimum' => '7.4.0',
'maximum' => '8.0.15',
'maximum' => '8.0.99',
],
'zip' => [
@ -98,15 +98,22 @@ $settings = [
// 'type' => 'value',
// 'description' => true,
//],
'upload_max_filesize' => [
'type' => 'value',
'description' => '>32M',
],
'post_max_size' => [
'type' => 'value',
'description' => '>32M',
],
'max_input_vars' => [
'type' => 'value',
'description' => '>5000',
],
];
$php = [];
@ -173,7 +180,7 @@ $db = [
'type' => 'mysql',
'description' => '5.7.x - 8.0.x',
'minimum' => '5.7.0',
'maximum' => '8.0.27',
'maximum' => '8.0.99',
],
];