gabrielmoura/laravel-cep

A simple Laravel package to get CEP information

1.0 2023-12-09 17:57 UTC

This package is auto-updated.

Last update: 2024-05-05 01:34:35 UTC


README

A comprehensive Laravel package for fetching Brazilian zip code (CEP) information from multiple providers, offering seamless caching and flexibility.

Features

  • Multiple Providers: Integrates with:
  • Intelligent Caching: Streamlines performance with optional Redis caching.
  • Ease of Use: Simple interface via container or facade.
  • Customizable: Configure the preferred provider.

Installation

composer require gabrielmoura/laravel-cep

Configuration

Publish the configuration file (optional):

php artisan vendor:publish --provider="Gabrielmoura\LaravelCep\CepServiceProvider"

In your config/services.php, adjust the default provider if desired:

'cep' => [
   'endpoint' => \Gabrielmoura\LaravelCep\EndpointOption::POSTMON, // Example: Change to your preferred provider
],

Strongly consider installing illuminate/redis for automatic caching.

Usage

Container:

use Gabrielmoura\LaravelCep\CepService;
$cepData = app(CepService::class)->find('01001000', true); // Enable caching

Facade:

use Gabrielmoura\LaravelCep\Cep;
$cepData = Cep::find('01001000', true); // Enable caching

Compatibility

  • Laravel 10.x

Contributing

We welcome contributions! Please refer to our CONTRIBUTING.md

License

Laravel CEP is released under the MIT License.