datana-gmbh / fake-api-client
API for Fake-API
Installs: 16 767
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 1
Requires
- php: >=8.2
- datana-gmbh/formulario-api: ^1.2
- fakerphp/faker: ^1.23
- oskarstark/trimmed-non-empty-string: ^1.0
- psr/log: ^1.1 || ^2.0 || ^3.0
- symfony/http-client: ^4.4 || ^5.1 || ^6.0
- thecodingmachine/safe: ^1.0 || ^2.0
- webmozart/assert: ^1.7
Requires (Dev)
This package is auto-updated.
Last update: 2024-11-03 10:35:45 UTC
README
Usage
Installation
composer require datana-gmbh/fake-api-client
Setup
use Datana\FakeApi\FakeApiClient; $baseUri = 'https://api.fake-api...'; $username = '...'; $password = '...'; $disableCache = true; // optional $timeout = 10; // optional $client = new FakeApiClient($baseUri, $username, $password, $disableCache, $timeout); // you can now request any endpoint which needs authentication $client->request('GET', '/api/something', $options);
Dateneingaben
In your code you should type-hint to Datana\Formulario\Api\DateneingabenApiInterface
Get by Aktenzeichen (string
)
use Datana\FakeApi\DateneingabenApi; use Datana\FakeApi\FakeClient; use Datana\Formulario\Api\Domain\Value\DateneingabenId; $client = new FakeClient(/* ... */); $api = new DateneingabenApi($client); $response = $api->byAktenzeichen('1abcde-1234-5678-Mustermann'); /* * to get the DateneingabenId transform the response to array * and use the 'id' key. */ $akten = $response->toArray(); $dateneingabenId = DateneingabenId::fromInt($akte['id']);
Get by ID (Datana\Formulario\Api\Domain\Value\DateneingabenId
)
use Datana\FakeApi\DateneingabenApi; use Datana\FakeApi\FakeClient; use Datana\Formulario\Api\Domain\Value\DateneingabenId; $client = new FakeClient(/* ... */); $api = new DateneingabenApi($client); $id = DateneingabenId::fromInt(123); $api->getById($id);
Statistics
In your code you should type-hint to Datana\Formulario\Api\StatisticsApiInterface
Get number of invitation mails sent for Mandantencockpit
use Datana\FakeApi\StatisticsApi; use Datana\FakeApi\FakeClient; $client = new FakeClient(/* ... */); $api = new StatisticsApi($client); $api->numberOfCockpitInvitationMailsSent(); // 42