Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

2.0.0-rc1

Compare
Choose a tag to compare
@frederikbosch frederikbosch released this 06 Dec 09:25
· 8 commits to master since this release

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
    ) {
    }