Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qdequippe-tech/pappers-php-api
PHP client for Pappers's API
https://github.com/qdequippe-tech/pappers-php-api
client pappers php sdk
Last synced: about 1 month ago
JSON representation
PHP client for Pappers's API
- Host: GitHub
- URL: https://github.com/qdequippe-tech/pappers-php-api
- Owner: qdequippe-tech
- License: mit
- Created: 2022-12-15T15:46:37.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-01T13:11:57.000Z (about 1 month ago)
- Last Synced: 2024-10-10T06:45:45.681Z (about 1 month ago)
- Topics: client, pappers, php, sdk
- Language: PHP
- Homepage: https://qdequippe-tech.github.io/pappers-php-api/
- Size: 1.03 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# PHP client for Pappers's API
PHP library to communicate with [Pappers](https://www.pappers.fr)'s API.
This SDK is generated automatically with [JanePHP](https://github.com/janephp/janephp)
from the [Pappers OpenAPI specification](https://www.pappers.fr/api/documentation).## 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/pappers-php-api
```## Usage
```php
$client = new \Qdequippe\Pappers\Api\Client();$client->recherche(['api_token' => 'YOUR_TOKEN', 'q' => 'Google']);
```## Thanks
💙 [JoliCode PHP Slack Client](https://github.com/jolicode/slack-php-api)