You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
phpvms/config/installer.php

45 lines
985 B

<?php
return [
'php' => [
'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'),
],
];