Minor fixes

This commit is contained in:
Amanmyrat 2023-08-04 11:57:21 +05:00
parent 5ada34049f
commit f0a3bf43e8
2 changed files with 11 additions and 10 deletions

View File

@ -66,6 +66,7 @@
]
},
"config": {
"platform-check": false,
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true

View File

@ -53,16 +53,16 @@ return [
],
'mysql' => [
'driver' => 'mysql',
'engine' => 'InnoDB',
'host' => 'localhost',
'port' => 3306,
'database' => 'berkarar',
'username' => 'shohrat',
'password' => 'Qazwsx12**',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => '',
'driver' => 'mysql',
'engine' => 'InnoDB',
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'berkarar'),
'username' => env('DB_USERNAME', ''),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => '',
'varcharmax' => 191,
],