2017-12-14 12:28:58 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
2017-12-15 06:38:29 +08:00
|
|
|
'php' => [
|
2019-08-27 00:32:46 +08:00
|
|
|
'version' => '7.2',
|
2017-12-15 06:38:29 +08:00
|
|
|
],
|
2017-12-15 07:12:42 +08:00
|
|
|
|
2019-07-18 21:26:33 +08:00
|
|
|
'cache' => [
|
|
|
|
// Default driver to use when no driver is present
|
|
|
|
'default' => 'file',
|
|
|
|
'drivers' => [
|
|
|
|
'Zend OPcache' => 'opcache',
|
2019-08-27 00:32:46 +08:00
|
|
|
'apc' => 'apc',
|
2019-07-18 21:26:33 +08:00
|
|
|
],
|
|
|
|
],
|
|
|
|
|
2017-12-15 06:38:29 +08:00
|
|
|
'extensions' => [
|
2020-02-29 07:00:56 +08:00
|
|
|
// 'bcmath',
|
2017-12-15 06:38:29 +08:00
|
|
|
'openssl',
|
|
|
|
'pdo',
|
|
|
|
'mbstring',
|
|
|
|
'tokenizer',
|
2018-02-26 01:12:27 +08:00
|
|
|
'json',
|
|
|
|
'curl',
|
2017-12-15 06:38:29 +08:00
|
|
|
],
|
|
|
|
|
2019-08-27 00:32:46 +08:00
|
|
|
// Make sure these are writable
|
2017-12-15 06:38:29 +08:00
|
|
|
'permissions' => [
|
2017-12-16 00:41:52 +08:00
|
|
|
'bootstrap/cache',
|
2018-04-02 08:28:15 +08:00
|
|
|
'public/uploads',
|
2017-12-16 00:41:52 +08:00
|
|
|
'storage',
|
|
|
|
'storage/app/public',
|
2019-05-13 12:45:07 +08:00
|
|
|
'storage/app/public/avatars',
|
|
|
|
'storage/app/public/uploads',
|
2017-12-16 00:41:52 +08:00
|
|
|
'storage/framework',
|
|
|
|
'storage/framework/cache',
|
|
|
|
'storage/framework/sessions',
|
|
|
|
'storage/framework/views',
|
|
|
|
'storage/logs',
|
2017-12-15 06:38:29 +08:00
|
|
|
],
|
2017-12-14 12:28:58 +08:00
|
|
|
];
|