phpvms/modules/Installer/Config/config.php
Nabeel S ff6ba4c29a
Remove ext-cal from requirements list (#349)
* Remove ext-cal from requirements list

* Fix the travis phpunit config
2019-08-08 12:50:32 -04:00

41 lines
826 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',
],
];