3800c01d94
* Update Laravel and other dependencies * Composer version in CI * Remove the PHP exit from env file * Add PHP 8 to testing matrix * Update doctrine * Update doctrine * Update faker lib * Rewrite TLD check to remove deprecated library * Update version lib * Remove PHP 8 for now * Style fixes
45 lines
985 B
PHP
45 lines
985 B
PHP
<?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',
|
|
'intl',
|
|
'mbstring',
|
|
'tokenizer',
|
|
'json',
|
|
'curl',
|
|
'dom',
|
|
],
|
|
|
|
// 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'),
|
|
],
|
|
];
|