phpvms/modules/Installer/Config/config.php

29 lines
490 B
PHP
Raw Normal View History

2017-12-14 12:28:58 +08:00
<?php
use Illuminate\Validation\Rule;
2017-12-14 12:28:58 +08:00
return [
'php' => [
'version' => '7.0.0'
],
# TODO: Remove eventually
2017-12-15 11:34:11 +08:00
// 'env_postfix' => '.generated',
'env_postfix' => '',
'extensions' => [
'openssl',
'pdo',
'mbstring',
'tokenizer',
'JSON',
'cURL',
],
'permissions' => [
'storage/framework/' => 'writeable',
'storage/logs/' => 'writeable',
'bootstrap/cache/' => 'writable'
],
2017-12-14 12:28:58 +08:00
];