Add mysqlnd requirement to systemhealth check

This commit is contained in:
David Bomba 2020-10-04 19:52:58 +11:00
parent ee8ae09314
commit f6ac4a8201
3 changed files with 3 additions and 2 deletions

View File

@ -198,7 +198,7 @@ class DemoMode extends Command
if (! $u2) {
$u2 = User::factory()->create([
'email' => 'demo@invoiceninja.com',
'password' => Hash::make('demo'),
'password' => Hash::make('Password0'),
'account_id' => $account->id,
'confirmation_code' => $this->createDbHash(config('database.default')),
]);

View File

@ -21,7 +21,7 @@ class Gateway extends StaticModel
'is_secure' => 'boolean',
'recommended' => 'boolean',
//'visible' => 'boolean',
//'sort_order' => 'int',
'sort_order' => 'int',
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'default_gateway_type_id' => 'string',

View File

@ -26,6 +26,7 @@ class SystemHealth
{
private static $extensions = [
'mysqli',
'mysqlnd',
'gd',
'curl',
'zip',