Installing and managing modules from admin panel (#847)
This commit is contained in:
42
config/installer.php
Normal file
42
config/installer.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?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',
|
||||
'mbstring',
|
||||
'tokenizer',
|
||||
'json',
|
||||
'curl',
|
||||
],
|
||||
|
||||
// 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'),
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user