phpvms/config/installer.php

45 lines
985 B
PHP
Raw Permalink Normal View History

2017-12-14 12:28:58 +08:00
<?php
return [
'php' => [
2020-05-16 06:22:24 +08:00
'version' => '7.3',
],
'cache' => [
// Default driver to use when no driver is present
'default' => 'file',
'drivers' => [
// 'Zend OPcache' => 'opcache',
// 'apc' => 'apc',
],
],
'extensions' => [
// 'bcmath',
'fileinfo',
'openssl',
'pdo',
'intl',
'mbstring',
'tokenizer',
'json',
'curl',
'dom',
],
// Make sure these are writable
'permissions' => [
base_path('bootstrap/cache'),
public_path('uploads'),
storage_path(),
storage_path('app/public'),
storage_path('app/public/avatars'),
storage_path('app/public/uploads'),
storage_path('framework'),
storage_path('framework/cache'),
storage_path('framework/sessions'),
storage_path('framework/views'),
storage_path('logs'),
],
2017-12-14 12:28:58 +08:00
];