Minor fixes
This commit is contained in:
parent
5ada34049f
commit
f0a3bf43e8
|
|
@ -66,6 +66,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
|
"platform-check": false,
|
||||||
"preferred-install": "dist",
|
"preferred-install": "dist",
|
||||||
"allow-plugins": {
|
"allow-plugins": {
|
||||||
"composer/installers": true
|
"composer/installers": true
|
||||||
|
|
|
||||||
|
|
@ -53,16 +53,16 @@ return [
|
||||||
],
|
],
|
||||||
|
|
||||||
'mysql' => [
|
'mysql' => [
|
||||||
'driver' => 'mysql',
|
'driver' => 'mysql',
|
||||||
'engine' => 'InnoDB',
|
'engine' => 'InnoDB',
|
||||||
'host' => 'localhost',
|
'host' => env('DB_HOST', 'localhost'),
|
||||||
'port' => 3306,
|
'port' => env('DB_PORT', '3306'),
|
||||||
'database' => 'berkarar',
|
'database' => env('DB_DATABASE', 'berkarar'),
|
||||||
'username' => 'shohrat',
|
'username' => env('DB_USERNAME', ''),
|
||||||
'password' => 'Qazwsx12**',
|
'password' => env('DB_PASSWORD', ''),
|
||||||
'charset' => 'utf8mb4',
|
'charset' => 'utf8mb4',
|
||||||
'collation' => 'utf8mb4_unicode_ci',
|
'collation' => 'utf8mb4_unicode_ci',
|
||||||
'prefix' => '',
|
'prefix' => '',
|
||||||
'varcharmax' => 191,
|
'varcharmax' => 191,
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue