PHPackages                             systemcode/customer-address-autocomplete-brazil - 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. systemcode/customer-address-autocomplete-brazil

ActiveMagento2-module[Utility &amp; Helpers](/categories/utility)

systemcode/customer-address-autocomplete-brazil
===============================================

Brazilian postcode mask and address autocomplete for Magento customer address forms.

1.0.0(1mo ago)07OSL-3.0PHP

Since Jun 12Pushed 1mo agoCompare

[ Source](https://github.com/m2-systemcode/CustomerAddressAutocompleteBrazil)[ Packagist](https://packagist.org/packages/systemcode/customer-address-autocomplete-brazil)[ RSS](/packages/systemcode-customer-address-autocomplete-brazil/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependencies (5)Versions (2)Used By (0)

System Code Address Autocomplete (Brazil)
=========================================

[](#system-code-address-autocomplete-brazil)

About Module
------------

[](#about-module)

Adds Brazilian CEP masking and address autocomplete on checkout and customer address forms. Looks up street, neighborhood, city, and state via zip code API, with options to reorder fields, disable address fields until lookup completes, lock autofilled data (including street prefix), and allow manual entry on lookup failure.

### Configuration

[](#configuration)

**Stores &gt; Configuration &gt; System Code &gt; Address Autocomplete (Brazil)**

### Screenshots

[](#screenshots)

#### Admin Configuration

[](#admin-configuration)

[![Admin Configuration](.github/images/configuration.png)](.github/images/configuration.png)

#### Frontend

[](#frontend)

[![Checkout](.github/images/frontend.png)](.github/images/frontend.png)

### Requirements

[](#requirements)

- `systemcode/base`
- `systemcode/customer`
- `magento/module-customer`
- `magento/module-checkout`
- `magento/module-directory`

### How to install

[](#how-to-install)

#### ✓ Install by Composer (recommended)

[](#-install-by-composer-recommended)

```
composer require systemcode/base systemcode/customer systemcode/customer-address-autocomplete-brazil
php bin/magento module:enable SystemCode_CustomerAddressAutocompleteBrazil
php bin/magento setup:upgrade

```

#### ✓ Install Manually

[](#-install-manually)

- Copy module to folder `app/code/SystemCode/CustomerAddressAutocompleteBrazil` and run commands:

```
php bin/magento module:enable SystemCode_CustomerAddressAutocompleteBrazil
php bin/magento setup:di:compile
php bin/magento setup:upgrade

```

### Suggested installation bundles

[](#suggested-installation-bundles)

These modules are not required by Address Autocomplete (Brazil), but work well together for a complete Brazilian address experience.

#### Address essentials

[](#address-essentials)

Custom street labels, street prefix, and CEP autocomplete.

```
composer require systemcode/base systemcode/customer \
  systemcode/customer-street-lines \
  systemcode/customer-street-prefix \
  systemcode/customer-address-autocomplete-brazil

```

#### Address autocomplete + registration

[](#address-autocomplete--registration)

Collect the customer address during account creation.

```
composer require systemcode/base systemcode/customer \
  systemcode/customer-address-autocomplete-brazil \
  systemcode/customer-address-registration

```

#### Address + Brazilian identity

[](#address--brazilian-identity)

Combine address autocomplete with CPF/CNPJ customer identity.

```
composer require systemcode/base systemcode/customer \
  systemcode/customer-address-autocomplete-brazil \
  systemcode/customer-identity-brazil

```

#### Full Brazilian storefront stack

[](#full-brazilian-storefront-stack)

Address, identity, registration, street labels, and street prefix.

```
composer require systemcode/base systemcode/customer \
  systemcode/customer-address-autocomplete-brazil \
  systemcode/customer-address-registration \
  systemcode/customer-street-lines \
  systemcode/customer-street-prefix \
  systemcode/customer-identity-brazil

```

#### Full stack with Enhanced identity

[](#full-stack-with-enhanced-identity)

Dedicated CPF, CNPJ, Social Name, and Trade Name fields.

```
composer require systemcode/base systemcode/customer \
  systemcode/customer-address-autocomplete-brazil \
  systemcode/customer-address-registration \
  systemcode/customer-street-lines \
  systemcode/customer-street-prefix \
  systemcode/customer-identity-brazil \
  systemcode/customer-identity-brazil-enhanced

```

### License

[](#license)

OSL-3.0

### Authors

[](#authors)

- [Eduardo Diogo Dias](https://github.com/eduardoddias)

---

Sobre o Módulo
--------------

[](#sobre-o-módulo)

Adiciona máscara de CEP brasileiro e autocomplete de endereço no checkout e nos formulários de endereço do cliente. Consulta logradouro, bairro, cidade e estado pela API de CEP, com opções para reordenar campos, desabilitar endereço até a consulta, bloquear campos preenchidos automaticamente (incluindo prefixo de logradouro) e permitir preenchimento manual em caso de falha.

### Configuração

[](#configuração)

**Lojas &gt; Configuração &gt; System Code &gt; Address Autocomplete (Brazil)**

### Screenshots

[](#screenshots-1)

#### Configuração no Admin

[](#configuração-no-admin)

[![Configuração no Admin](.github/images/configuration.png)](.github/images/configuration.png)

#### Frontend

[](#frontend-1)

[![Checkout](.github/images/frontend.png)](.github/images/frontend.png)

### Requisitos

[](#requisitos)

- `systemcode/base`
- `systemcode/customer`
- `magento/module-customer`
- `magento/module-checkout`
- `magento/module-directory`

### Como Instalar

[](#como-instalar)

#### ✓ Instalação via Composer (recomendado)

[](#-instalação-via-composer-recomendado)

```
composer require systemcode/base systemcode/customer systemcode/customer-address-autocomplete-brazil
php bin/magento module:enable SystemCode_CustomerAddressAutocompleteBrazil
php bin/magento setup:upgrade

```

#### ✓ Instalação Manual

[](#-instalação-manual)

- Copie o módulo para `app/code/SystemCode/CustomerAddressAutocompleteBrazil` e execute:

```
php bin/magento module:enable SystemCode_CustomerAddressAutocompleteBrazil
php bin/magento setup:di:compile
php bin/magento setup:upgrade

```

### Combinações de instalação sugeridas

[](#combinações-de-instalação-sugeridas)

Estes módulos não são obrigatórios para o Address Autocomplete (Brazil), mas combinam bem para uma experiência completa de endereço brasileiro.

#### Essenciais de endereço

[](#essenciais-de-endereço)

Rótulos de rua, prefixo de logradouro e autocomplete de CEP.

```
composer require systemcode/base systemcode/customer \
  systemcode/customer-street-lines \
  systemcode/customer-street-prefix \
  systemcode/customer-address-autocomplete-brazil

```

#### Autocomplete + cadastro

[](#autocomplete--cadastro)

Coleta o endereço do cliente já no cadastro.

```
composer require systemcode/base systemcode/customer \
  systemcode/customer-address-autocomplete-brazil \
  systemcode/customer-address-registration

```

#### Endereço + identidade brasileira

[](#endereço--identidade-brasileira)

Autocomplete de endereço com identidade CPF/CNPJ.

```
composer require systemcode/base systemcode/customer \
  systemcode/customer-address-autocomplete-brazil \
  systemcode/customer-identity-brazil

```

#### Stack completo brasileiro

[](#stack-completo-brasileiro)

Endereço, identidade, cadastro, rótulos de rua e prefixo de logradouro.

```
composer require systemcode/base systemcode/customer \
  systemcode/customer-address-autocomplete-brazil \
  systemcode/customer-address-registration \
  systemcode/customer-street-lines \
  systemcode/customer-street-prefix \
  systemcode/customer-identity-brazil

```

#### Stack completo com identidade Enhanced

[](#stack-completo-com-identidade-enhanced)

Campos dedicados de CPF, CNPJ, Razão Social e Nome Fantasia.

```
composer require systemcode/base systemcode/customer \
  systemcode/customer-address-autocomplete-brazil \
  systemcode/customer-address-registration \
  systemcode/customer-street-lines \
  systemcode/customer-street-prefix \
  systemcode/customer-identity-brazil \
  systemcode/customer-identity-brazil-enhanced

```

### Licença

[](#licença)

OSL-3.0

### Autores

[](#autores)

- [Eduardo Diogo Dias](https://github.com/eduardoddias)

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance91

Actively maintained with recent releases

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity33

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

44d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/da04c97689053a27ea48cbce0ef2628c75c789f23ccf6f0d36fa2fb518e1b606?d=identicon)[System Code](/maintainers/System%20Code)

---

Top Contributors

[![eduardoddias](https://avatars.githubusercontent.com/u/5066212?v=4)](https://github.com/eduardoddias "eduardoddias (1 commits)")

### Embed Badge

![Health badge](/badges/systemcode-customer-address-autocomplete-brazil/health.svg)

```
[![Health](https://phpackages.com/badges/systemcode-customer-address-autocomplete-brazil/health.svg)](https://phpackages.com/packages/systemcode-customer-address-autocomplete-brazil)
```

###  Alternatives

[mollie/magento2

Mollie Payment Module for Magento 2

1131.9M16](/packages/mollie-magento2)[buckaroo/magento2

Buckaroo Magento 2 extension

32420.3k8](/packages/buckaroo-magento2)[amzn/amazon-pay-magento-2-module

Official Magento2 Plugin to integrate with Amazon Pay

108531.2k1](/packages/amzn-amazon-pay-magento-2-module)[systemcode/brazilcustomerattributes

Brazilian customer identity using Magento native taxvat and name fields.

6014.1k](/packages/systemcode-brazilcustomerattributes)[imi/magento2-friendly-captcha

Friendly Captcha integration for Magento2

19131.4k](/packages/imi-magento2-friendly-captcha)[loki/magento2-components

Core module for defining Alpine.js components with advanced AJAX features

1011.8k26](/packages/loki-magento2-components)

PHPackages © 2026

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