e862537a20
* Split the importer module out from the installer module * Cleanup of unused imports * Move updater into separate module #453 * Remove unused imports/formatting * Disable the install and importer modules at the end of the setup * Unused imports; update IJ style * test explicit stage for php+mysql * add more to matrix * Add different MariaDB versions * undo
41 lines
837 B
PHP
41 lines
837 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',
|
|
],
|
|
];
|