PHP code example of huy-nguyen / laravel-optimize-init-db-connection

1. Go to this page and download the library: Download huy-nguyen/laravel-optimize-init-db-connection library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

huy-nguyen / laravel-optimize-init-db-connection example snippets


return [
     'driver' => 'mysql',
];
 config/optimize-init-db-connection.php 

return [
     'driver' => 'optimize-mysql',
];

'mysql' => [
            'driver' => 'optimize-mysql',
            'url' => env('DATABASE_URL'),
            'host' => env('DB_HOST', '127.0.0.1'),
            'port' => env('DB_PORT', '3306'),
            'database' => env('DB_DATABASE', 'forge'),
            'username' => env('DB_USERNAME', 'forge'),
            'password' => env('DB_PASSWORD', ''),
            'unix_socket' => env('DB_SOCKET', ''),
            'charset' => 'utf8mb4',
            'collation' => 'utf8mb4_unicode_ci',
            'prefix' => '',
            'prefix_indexes' => true,
            'strict' => false,
            'engine' => null,
            'options' => []
        ],
bash
php artisan vendor:publish --tag="optimize-init-db-connection-config"