Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qdequippe-tech/silae-php
Silae REST API PHP
https://github.com/qdequippe-tech/silae-php
api sdk-php silae
Last synced: about 2 months ago
JSON representation
Silae REST API PHP
- Host: GitHub
- URL: https://github.com/qdequippe-tech/silae-php
- Owner: qdequippe-tech
- License: mit
- Created: 2023-05-24T13:30:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-07T07:20:53.000Z (2 months ago)
- Last Synced: 2024-11-14T13:54:49.395Z (2 months ago)
- Topics: api, sdk-php, silae
- Language: PHP
- Homepage: https://silae-api.document360.io/api-rest/docs
- Size: 3.77 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# PHP client for Silae's API
PHP library to communicate with [Silae REST API](https://silae-api.document360.io/api-rest/docs).
This SDK is generated automatically with [JanePHP](https://github.com/janephp/janephp).
## Installation
This library is built atop of [PSR-7](https://www.php-fig.org/psr/psr-7/) and
[PSR-18](https://www.php-fig.org/psr/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:```bash
composer require symfony/http-client nyholm/psr7
```You can now install the client:
```bash
composer require qdequippe-tech/silae-php
```## Usage
```php
$client = \QdequippeTech\Silae\ClientFactory::create();$request = new \QdequippeTech\Silae\Api\Model\ListeDossiersRequest();
$request->setTypeDossiers(1);$client->listeDossiers($request);
```## Thanks
💙 [JoliCode PHP Slack Client](https://github.com/jolicode/slack-php-api)