qdequippe-tech / silae-php
Silae REST API PHP SDK
0.6.0
2024-07-04 05:36 UTC
Requires
- php: >=8.1
- jane-php/open-api-runtime: ^7.5
Requires (Dev)
- jane-php/open-api-2: ^7.5
- nyholm/psr7: ^1.8
- rector/rector: ^0.18.0 || ^0.19.0 || ^1.0.0
README
PHP library to communicate with Silae REST API.
This SDK is generated automatically with JanePHP.
Installation
This library is built atop of PSR-7 and PSR-18. So you will need to install some implementations for those standard interfaces.
If no PSR-18 client or PSR-7 message factory is available yet in your project or you don't know or don't care which one to use, just install some default:
composer require symfony/http-client nyholm/psr7
You can now install the client:
composer require qdequippe-tech/silae-php
Usage
$client = \QdequippeTech\Silae\ClientFactory::create(); $request = new \QdequippeTech\Silae\Api\Model\ListeDossiersRequest(); $request->setTypeDossiers(1); $client->listeDossiers($request);