Minor fixes
This commit is contained in:
parent
5ada34049f
commit
f0a3bf43e8
|
|
@ -66,6 +66,7 @@
|
|||
]
|
||||
},
|
||||
"config": {
|
||||
"platform-check": false,
|
||||
"preferred-install": "dist",
|
||||
"allow-plugins": {
|
||||
"composer/installers": true
|
||||
|
|
|
|||
|
|
@ -55,11 +55,11 @@ return [
|
|||
'mysql' => [
|
||||
'driver' => 'mysql',
|
||||
'engine' => 'InnoDB',
|
||||
'host' => 'localhost',
|
||||
'port' => 3306,
|
||||
'database' => 'berkarar',
|
||||
'username' => 'shohrat',
|
||||
'password' => 'Qazwsx12**',
|
||||
'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' => '',
|
||||
|
|
|
|||
Loading…
Reference in New Issue