ayctor / sireneapi
Small PHP client library for Sirene API
1.1.1
2020-05-26 12:33 UTC
Requires
- php: >=7.4.0
- guzzlehttp/guzzle: ^6.2
Requires (Dev)
- phpunit/phpunit: ^6.1
This package is auto-updated.
Last update: 2024-10-19 22:39:39 UTC
README
It is a small php client library to use the Sirene API.
See official documentation for availables methods.
Installation
composer require ayctor/sireneapi
Usage
V1
Doc will come
V3
use SireneApi\SireneApi; $api = new SireneApi; // Get all companies $companies = $api->companies()->all(); // Get company by SIREN number $company = $api->companies()->getBySiren('552081317'); // Get companies by other fields $companies = SirenApi::companies()->getBy('code_postal', 77100); // Get companies by other fields $companies = $api->companies()->getBy([ 'code_postal' => 77100, ]); // Get all estabslishments $establishments = $api->establishments()->all(); // Get establishments by SIREN number $establishments = $api->establishments()->getBySiren('552081317'); // Get establishment by SIRET number $establishment = $api->establishments()->getBySiret('55208131785027'); // Get establishments by other fields $establishments = $api->establishments()->getBy('code_postal', 77100); // Get establishments by other fields $establishments = SirenApi::establishments()->getBy([ 'code_postal' => 77100, ]);
Errors
getBySiret()
It will throw an exception if you use this function to retrieve companies
getBy()
It will throw an exception if you use this function with the first param as a string and no second param.