mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-29 14:24:46 +02:00
Small adjustments for now
This commit is contained in:
parent
558b8b2ea7
commit
94bbf46659
@ -10,6 +10,7 @@ use Illuminate\Support\Facades\Artisan;
|
|||||||
class AppSettingsCommand extends Command
|
class AppSettingsCommand extends Command
|
||||||
{
|
{
|
||||||
use EnvironmentWriterTrait;
|
use EnvironmentWriterTrait;
|
||||||
|
|
||||||
public const CACHE_DRIVERS = [
|
public const CACHE_DRIVERS = [
|
||||||
'file' => 'Filesystem (recommended)',
|
'file' => 'Filesystem (recommended)',
|
||||||
'redis' => 'Redis',
|
'redis' => 'Redis',
|
||||||
@ -18,12 +19,13 @@ class AppSettingsCommand extends Command
|
|||||||
public const SESSION_DRIVERS = [
|
public const SESSION_DRIVERS = [
|
||||||
'file' => 'Filesystem (recommended)',
|
'file' => 'Filesystem (recommended)',
|
||||||
'redis' => 'Redis',
|
'redis' => 'Redis',
|
||||||
'database' => 'MySQL Database',
|
'database' => 'Database',
|
||||||
'cookie' => 'Cookie',
|
'cookie' => 'Cookie',
|
||||||
];
|
];
|
||||||
|
|
||||||
public const QUEUE_DRIVERS = [
|
public const QUEUE_DRIVERS = [
|
||||||
'database' => 'MySQL Database (recommended)',
|
'sync' => 'Synchronous (recommended)',
|
||||||
|
'database' => 'Database',
|
||||||
'redis' => 'Redis',
|
'redis' => 'Redis',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user