PHPackages                             finller/laravel-insee-siren - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. finller/laravel-insee-siren

ActiveLibrary[API Development](/categories/api)

finller/laravel-insee-siren
===========================

Insee Siren API for Laravel

v0.0.4(1y ago)0151[4 PRs](https://github.com/finller/laravel-insee-siren/pulls)MITPHPPHP ^8.2CI passing

Since May 13Pushed 1mo agoCompare

[ Source](https://github.com/finller/laravel-insee-siren)[ Packagist](https://packagist.org/packages/finller/laravel-insee-siren)[ Docs](https://github.com/finller/laravel-insee-siren)[ GitHub Sponsors](https://github.com/Finller)[ RSS](/packages/finller-laravel-insee-siren/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (16)Versions (9)Used By (0)

Insee Siren API for Laravel
===========================

[](#insee-siren-api-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/ea8b68534f0a210413012d254f23631f0b78eab9163783df7ea4f1f40c85600d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f66696e6c6c65722f6c61726176656c2d696e7365652d736972656e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/finller/laravel-insee-siren)[![GitHub Tests Action Status](https://camo.githubusercontent.com/738bd7ecd39c8213be276631e3f4b007c5beed256277549e541a3717e86f1810/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f66696e6c6c65722f6c61726176656c2d696e7365652d736972656e2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/finller/laravel-insee-siren/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/2c733ce46187ec1c5da4d8e7c74e71f902fb7a53be12f4785cf989c292589e79/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f66696e6c6c65722f6c61726176656c2d696e7365652d736972656e2f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/finller/laravel-insee-siren/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/46c625a62be848fe8d1024e07f072e11bf8697f8f1905cde294f43bc03cc6248/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f66696e6c6c65722f6c61726176656c2d696e7365652d736972656e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/finller/laravel-insee-siren)

Simple package to use Insee Siren API in Laravel.

It provides cache, rate limiting and auth.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require finller/laravel-insee-siren
```

You can publish and run the migrations with:

```
php artisan vendor:publish --tag="insee-siren-config"
```

This is the contents of the published config file:

```
use Finller\InseeSiren\Integrations\Insee\InseeApiConnector;

return [
    'key' => env('INSEE_KEY'),
    'secret' => env('INSEE_SECRET'),
    'version' => env('INSEE_SIREN_VERSION'),

    'cache' => [
        'enabled' => true,
        'driver' => env('INSEE_CACHE_DRIVER', env('CACHE_DRIVER', 'file')),
        'expiry_seconds' => 604_800, // 1 week
    ],

    'rate_limit' => [
        'enabled' => false,
        'driver' => env('INSEE_RATE_LIMIT_DRIVER', env('CACHE_DRIVER', 'file')),
        'every_minute' => 30,
    ],

    'client' => InseeApiConnector::class,
];
```

Usage
-----

[](#usage)

```
$data = InseeSiren::get("897962361");

$data->get('uniteLegale')
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Quentin Gabriele](https://github.com/QuentinGab)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance65

Regular maintenance activity

Popularity10

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

4

Last Release

729d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d769563728757858e249f266ac2555f28db5640124df92821ed17d93ee76fc7b?d=identicon)[QuentinGab](/maintainers/QuentinGab)

---

Top Contributors

[![QuentinGab](https://avatars.githubusercontent.com/u/40128136?v=4)](https://github.com/QuentinGab "QuentinGab (7 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (6 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (6 commits)")

---

Tags

laravelfinllerlaravel-insee-siren

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/finller-laravel-insee-siren/health.svg)

```
[![Health](https://phpackages.com/badges/finller-laravel-insee-siren/health.svg)](https://phpackages.com/packages/finller-laravel-insee-siren)
```

###  Alternatives

[codebar-ag/laravel-docuware

DocuWare integration with Laravel

1221.1k](/packages/codebar-ag-laravel-docuware)[codebar-ag/laravel-zammad

Zammad integration with Laravel

106.1k](/packages/codebar-ag-laravel-zammad)[njoguamos/laravel-plausible

A laravel package for interacting with plausible analytics api.

208.8k](/packages/njoguamos-laravel-plausible)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
