PHPackages                             aurelbichop/recherche-entreprises-bundle - 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. aurelbichop/recherche-entreprises-bundle

ActiveSymfony-bundle[API Development](/categories/api)

aurelbichop/recherche-entreprises-bundle
========================================

Bundle Symfony pour l'API Recherche d'entreprises du gouvernement français

v0.1.0(5mo ago)111MITPHPCI passing

Since Nov 23Pushed 5mo agoCompare

[ Source](https://github.com/AurelBichop/bundle-search-entreprise)[ Packagist](https://packagist.org/packages/aurelbichop/recherche-entreprises-bundle)[ RSS](/packages/aurelbichop-recherche-entreprises-bundle/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (7)Versions (3)Used By (0)

Bundle-demo-search-entreprise
=============================

[](#bundle-demo-search-entreprise)

Recherche Entreprises Bundle
----------------------------

[](#recherche-entreprises-bundle)

[![Tests](https://github.com/AurelBichop/bundle-search-entreprise/actions/workflows/tests.yml/badge.svg)](https://github.com/AurelBichop/bundle-search-entreprise/actions/workflows/tests.yml)

Bundle Symfony pour l'[API Recherche d'entreprises](https://recherche-entreprises.api.gouv.fr/) du gouvernement français.

### 📦 Installation

[](#-installation)

```
composer require aurelbichop/recherche-entreprises-bundle
```

### ⚙️ Configuration (optionnelle)

[](#️-configuration-optionnelle)

```
# config/packages/aurelbichop_recherche_entreprises.yaml
aurel_bichop_recherche_entreprises:
    timeout: 10  # Timeout en secondes (défaut: 10)
```

### 🚀 Utilisation

[](#-utilisation)

#### Dans un Contrôleur

[](#dans-un-contrôleur)

```
use AurelBichop\RechercheEntreprisesBundle\Client\EntrepriseSearchClientInterface;

public function __construct(
    private EntrepriseSearchClientInterface $entrepriseClient
) {}

public function search(): Response
{
    $result = $this->entrepriseClient->search('carrefour');

    foreach ($result->results as $entreprise) {
        echo $entreprise->nomComplet . ' - ' . $entreprise->siren;
    }
}
```

#### Recherche par SIREN

[](#recherche-par-siren)

```
$entreprise = $this->entrepriseClient->findBySiren('652014051');

if ($entreprise) {
    echo $entreprise->nomComplet;
}
```

#### Commande Console

[](#commande-console)

```
# Recherche simple
php bin/console recherche-entreprise:search carrefour

# Par SIREN (détails complets)
php bin/console recherche-entreprise:search 652014051 --siren
```

### 📊 Modèles

[](#-modèles)

- `SearchResult` : Résultat paginé
- `Entreprise` : Données d'entreprise
- `Siege` : Établissement siège

### 🧪 Tests

[](#-tests)

```
vendor/bin/phpunit --testdox
```

### 📝 Licence

[](#-licence)

[MIT](LICENSE)

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance70

Regular maintenance activity

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity26

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

171d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/00584cd44928dd67d3aa51e06fa4cc9bfdaa9d801fc607a66d5a2590e09d2d15?d=identicon)[AurelBichop](/maintainers/AurelBichop)

---

Top Contributors

[![AurelBichop](https://avatars.githubusercontent.com/u/36901054?v=4)](https://github.com/AurelBichop "AurelBichop (9 commits)")

---

Tags

symfonysymfony-bundleapisymfonybundleSirensireneentreprise

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/aurelbichop-recherche-entreprises-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/aurelbichop-recherche-entreprises-bundle/health.svg)](https://phpackages.com/packages/aurelbichop-recherche-entreprises-bundle)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)

PHPackages © 2026

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