mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-31 06:24:35 -04:00
Add mysqlnd requirement to systemhealth check
This commit is contained in:
parent
ee8ae09314
commit
f6ac4a8201
@ -198,7 +198,7 @@ class DemoMode extends Command
|
|||||||
if (! $u2) {
|
if (! $u2) {
|
||||||
$u2 = User::factory()->create([
|
$u2 = User::factory()->create([
|
||||||
'email' => 'demo@invoiceninja.com',
|
'email' => 'demo@invoiceninja.com',
|
||||||
'password' => Hash::make('demo'),
|
'password' => Hash::make('Password0'),
|
||||||
'account_id' => $account->id,
|
'account_id' => $account->id,
|
||||||
'confirmation_code' => $this->createDbHash(config('database.default')),
|
'confirmation_code' => $this->createDbHash(config('database.default')),
|
||||||
]);
|
]);
|
||||||
|
@ -21,7 +21,7 @@ class Gateway extends StaticModel
|
|||||||
'is_secure' => 'boolean',
|
'is_secure' => 'boolean',
|
||||||
'recommended' => 'boolean',
|
'recommended' => 'boolean',
|
||||||
//'visible' => 'boolean',
|
//'visible' => 'boolean',
|
||||||
//'sort_order' => 'int',
|
'sort_order' => 'int',
|
||||||
'updated_at' => 'timestamp',
|
'updated_at' => 'timestamp',
|
||||||
'created_at' => 'timestamp',
|
'created_at' => 'timestamp',
|
||||||
'default_gateway_type_id' => 'string',
|
'default_gateway_type_id' => 'string',
|
||||||
|
@ -26,6 +26,7 @@ class SystemHealth
|
|||||||
{
|
{
|
||||||
private static $extensions = [
|
private static $extensions = [
|
||||||
'mysqli',
|
'mysqli',
|
||||||
|
'mysqlnd',
|
||||||
'gd',
|
'gd',
|
||||||
'curl',
|
'curl',
|
||||||
'zip',
|
'zip',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user