phpvms/modules/Installer/Config/config.php
Nabeel S 68eff40753
Replace importer with AJAX powered; better error handling #443 (#447)
* Replace importer with AJAX powered; better error handling #443

* Formatting

* Fix command line importer
2019-12-02 09:57:35 -05:00

45 lines
893 B
PHP

<?php
return [
'php' => [
'version' => '7.2',
],
'cache' => [
// Default driver to use when no driver is present
'default' => 'file',
'drivers' => [
'Zend OPcache' => 'opcache',
'apc' => 'apc',
],
],
'extensions' => [
'openssl',
'pdo',
'mbstring',
'tokenizer',
'json',
'curl',
],
// Make sure these are writable
'permissions' => [
'bootstrap/cache',
'public/uploads',
'storage',
'storage/app/public',
'storage/app/public/avatars',
'storage/app/public/uploads',
'storage/framework',
'storage/framework/cache',
'storage/framework/sessions',
'storage/framework/views',
'storage/logs',
],
'importer' => [
'batch_size' => 20,
],
];