httpClient menambahkan otorisasi header simfoni

$response = $client->request('GET', 'https://...', [
    'auth_basic' => ['the-username', 'the-password'],
    // ...
]);
Arex