This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
2.0.0-rc1
Changes
Drop guzzle as direct dependency, use psr, php 8.0+
BC Break
The constructor now requires $requestFactory
.
Connection constructor:
public function __construct(
private ClientInterface $client,
private RequestFactoryInterface $requestFactory,
private string $address,
private string $token
) {
}