Releases: phpro/http-tools
Releases · phpro/http-tools
Version 2.14.0
Version 2.13.0
What's Changed
Full Changelog: 2.12.0...2.13.0
Version 2.12.0
Version 2.11.0
Version 2.10.0
Version 2.9.0
What's Changed
<?php
$client = ClientBuilder::default(SymfonyClientFactory::create([]))
->addBaseUri('https://www.google.com')
->addHeaders([
'x-Foo' => 'bar',
])
->addAuthentication(new BasicAuth('user', 'pass'))
->addLogger(
new ConsoleLogger(new ConsoleOutput(OutputInterface::VERBOSITY_DEBUG)),
FormatterBuilder::default()
->withDebug(true)
->withMaxBodyLength(1000)
->addDecorator(RemoveSensitiveHeadersFormatter::createDecorator([
'X-SENSITIVE-HEADER',
]))
->build()
)
// ....
->build();Full Changelog: 2.8.0...2.9.0
Version 2.8.0
What's Changed
Full Changelog: 2.7.0...2.8.0
Version 2.7.0
Version 2.6.0
Version 2.5.0
What's Changed
Full Changelog: 2.4.0...2.5.0