2017-12-14 12:28:58 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
2017-12-15 06:38:29 +08:00
|
|
|
'php' => [
|
2020-05-16 06:22:24 +08:00
|
|
|
'version' => '7.3',
|
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' => [
|
2020-03-10 01:08:07 +08:00
|
|
|
// 'Zend OPcache' => 'opcache',
|
|
|
|
// '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',
|
2020-09-04 23:28:33 +08:00
|
|
|
'fileinfo',
|
2017-12-15 06:38:29 +08:00
|
|
|
'openssl',
|
|
|
|
'pdo',
|
2021-03-05 06:08:51 +08:00
|
|
|
'intl',
|
2017-12-15 06:38:29 +08:00
|
|
|
'mbstring',
|
|
|
|
'tokenizer',
|
2018-02-26 01:12:27 +08:00
|
|
|
'json',
|
|
|
|
'curl',
|
2021-02-19 21:13:08 +08:00
|
|
|
'dom',
|
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' => [
|
2020-05-16 03:42:57 +08:00
|
|
|
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'),
|
2017-12-15 06:38:29 +08:00
|
|
|
],
|
2017-12-14 12:28:58 +08:00
|
|
|
];
|