httpclient ajouter une en-tête d'autorisation Symphonie

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