PHPackages                             elegantly/laravel-pappers - 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. elegantly/laravel-pappers

ActiveLibrary[API Development](/categories/api)

elegantly/laravel-pappers
=========================

pappers.fr API for Laravel

v2.4.0(3mo ago)010.6k↓50.4%[1 PRs](https://github.com/ElegantEngineeringTech/laravel-pappers/pulls)MITPHPPHP ^8.2CI passing

Since May 14Pushed 1w ago1 watchersCompare

[ Source](https://github.com/ElegantEngineeringTech/laravel-pappers)[ Packagist](https://packagist.org/packages/elegantly/laravel-pappers)[ Docs](https://github.com/ElegantEngineeringTech/laravel-pappers)[ GitHub Sponsors](https://github.com/ElegantEngineeringTech)[ RSS](/packages/elegantly-laravel-pappers/feed)WikiDiscussions main Synced today

READMEChangelog (10)Dependencies (48)Versions (23)Used By (0)

pappers.fr API for Laravel
==========================

[](#pappersfr-api-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d99cb0b0e1f83b0c32ae766b699f5133654164ee4ef62533d0dfcbbe7c26d696/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f656c6567616e746c792f6c61726176656c2d706170706572732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/elegantly/laravel-pappers)[![GitHub Tests Action Status](https://camo.githubusercontent.com/ded20e4919c047c2b675f4f94b552ad637706ed75c9bb1535e904517dcc7098b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f456c6567616e74456e67696e656572696e67546563682f6c61726176656c2d706170706572732f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/ElegantEngineeringTech/laravel-pappers/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/4ee04091b1ed36ead08008438c82926884aa02d225a800f011337d33b4b40fa2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f456c6567616e74456e67696e656572696e67546563682f6c61726176656c2d706170706572732f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/ElegantEngineeringTech/laravel-pappers/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/90943c1bc6b15ff46b237f5b90d7357bcb92b21cd2055ebe8b9f3136c9e57390/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f656c6567616e746c792f6c61726176656c2d706170706572732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/elegantly/laravel-pappers)

Easily use pappers.fr Entreprises API within Laravel.

Based on Saloon and supporting cache and rate limiting.

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

[](#installation)

You can install the package via composer:

```
composer require elegantly/laravel-pappers
```

You can publish the config file with:

```
php artisan vendor:publish --tag="pappers-config"
```

This is the contents of the published config file:

```
return [

    'france' => [
        'token' => env('PAPPERS_FRANCE_TOKEN', env('PAPPERS_TOKEN')),
        'version' => env('PAPPERS_FRANCE_VERSION'),
    ],

    'international' => [
        'token' => env('PAPPERS_INTERNATIONAL_TOKEN', env('PAPPERS_TOKEN')),
        'version' => env('PAPPERS_INTERNATIONAL_VERSION'),
    ],

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

    'rate_limit' => [
        'enabled' => false,
        'driver' => env('PAPPERS_RATE_LIMIT_DRIVER', env('CACHE_STORE', env('CACHE_DRIVER', 'file'))),
        'every_minute' => 30,
    ],
];
```

Usage
-----

[](#usage)

```
use Elegantly\Pappers\Facades\Pappers;
use Elegantly\Pappers\Integrations\France\Requests\EntrepriseRequest;

$entreprise = Pappers::france()->send(new EntrepriseRequest(
    siren: "897962361"
));
```

```
use Elegantly\Pappers\Facades\Pappers;
use Elegantly\Pappers\Integrations\International\Requests\CompanyRequest;

$entreprise = Pappers::international()->send(new CompanyRequest(
    country_code: "FR",
    company_number: "897962361"
));
```

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

51

—

FairBetter than 95% of packages

Maintenance91

Actively maintained with recent releases

Popularity25

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 66.7% of commits — single point of failure

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 ~40 days

Recently: every ~87 days

Total

18

Last Release

94d ago

Major Versions

v1.1.0 → v2.0.02024-06-27

### 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 (40 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (13 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (7 commits)")

---

Tags

laravelElegantlylaravel-pappers

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/elegantly-laravel-pappers/health.svg)

```
[![Health](https://phpackages.com/badges/elegantly-laravel-pappers/health.svg)](https://phpackages.com/packages/elegantly-laravel-pappers)
```

###  Alternatives

[codebar-ag/laravel-docuware

DocuWare integration with Laravel

1123.7k](/packages/codebar-ag-laravel-docuware)[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.1k11.2M102](/packages/dedoc-scramble)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

811334.1k3](/packages/defstudio-telegraph)[codebar-ag/laravel-zammad

Zammad integration with Laravel

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

A laravel package for interacting with plausible analytics api.

209.6k](/packages/njoguamos-laravel-plausible)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)

PHPackages © 2026

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