PHPackages                             cmrweb/address-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. cmrweb/address-bundle

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

cmrweb/address-bundle
=====================

api.gouv symfony helper

0.09(5mo ago)2361MITPHPCI passing

Since Nov 21Pushed 3mo agoCompare

[ Source](https://github.com/cmrweb/AddressBundle)[ Packagist](https://packagist.org/packages/cmrweb/address-bundle)[ RSS](/packages/cmrweb-address-bundle/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (9)Dependencies (25)Versions (9)Used By (0)

[![AddressBundle](https://private-user-images.githubusercontent.com/33638879/517725536-5a6fc6a9-f5e2-45dc-ade9-636b32be6063.mov?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzU0MzQ0MjEsIm5iZiI6MTc3NTQzNDEyMSwicGF0aCI6Ii8zMzYzODg3OS81MTc3MjU1MzYtNWE2ZmM2YTktZjVlMi00NWRjLWFkZTktNjM2YjMyYmU2MDYzLm1vdj9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA0MDYlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNDA2VDAwMDg0MVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWRjYzZiMjFiNTczMzI5MGMyNTEzNjI1MjUxMWFhNmRlN2NjMTcwMDNhY2NlYmNjZGM4MDdhODdiMjMxZWNlOTgmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.gIMaFW6Me-OBWJymg0ChN0vnjHkxkQH9mANVzYmwlnE)](https://github.com/user-attachments/assets/5a6fc6a9-f5e2-45dc-ade9-636b32be6063)

Installation
============

[](#installation)

Make sure Composer is installed globally, as explained in the [installation chapter](https://getcomposer.org/doc/00-intro.md)of the Composer documentation.

Applications that use Symfony Flex
----------------------------------

[](#applications-that-use-symfony-flex)

Open a command console, enter your project directory and execute:

```
composer require cmrweb/address-bundle
```

Applications that don't use Symfony Flex
----------------------------------------

[](#applications-that-dont-use-symfony-flex)

### Step 1: Download the Bundle

[](#step-1-download-the-bundle)

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

```
composer require cmrweb/address-bundle
```

### Step 2: Enable the Bundle

[](#step-2-enable-the-bundle)

Then, enable the bundle by adding it to the list of registered bundles in the `config/bundles.php` file of your project:

```
return [
    Cmrweb\AddressBundle\AddressBundle::class => ['all' => true],
];
```

### Usage

[](#usage)

Display autocompletion input
----------------------------

[](#display-autocompletion-input)

Make search address component

```
// without css
symfony console make:address

// bootstrap 5 classes
symfony console make:address -b
```

```

```

Get Address
-----------

[](#get-address)

Return Address Model with AddressTrait in same or other component.

```
// ...
use AddressTrait;
// ...

# return Address Model
$this->getAddress()

# return Address array
$this->getAddressArray()
```

Twig

```
{{ dump(address) }}
{{ dump(addressArray) }}
```

Address Model

```
string $label;
string $numero;
string $libelle;
string $codePostal;
string $ville;
string $region;
float $lat;
float $lon;

public function getLabel(): string;
public function getNumero(): string;
public function getLibelle(): string;
public function getCodePostal(): string;
public function getVille(): string;
public function getRegion(): string;
public function getLat(): float;
public function getLon(): float;
```

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance75

Regular maintenance activity

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity30

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

Every ~8 days

Recently: every ~15 days

Total

8

Last Release

117d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/33638879?v=4)[cmrweb](/maintainers/cmrweb)[@cmrweb](https://github.com/cmrweb)

---

Top Contributors

[![cmrweb](https://avatars.githubusercontent.com/u/33638879?v=4)](https://github.com/cmrweb "cmrweb (45 commits)")

---

Tags

addressautocomplete-searchautocompletionlatitude-and-longitudephp8symfony-bundle

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/cmrweb-address-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/cmrweb-address-bundle/health.svg)](https://phpackages.com/packages/cmrweb-address-bundle)
```

###  Alternatives

[sylius/sylius

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

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

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[easycorp/easyadmin-demo

EasyAdmin Demo Application

145.7k](/packages/easycorp-easyadmin-demo)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)[forumify/forumify-platform

121.8k11](/packages/forumify-forumify-platform)

PHPackages © 2026

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