Skip to content

Library to provides Brazilian States as Value Objects in PHP

Notifications You must be signed in to change notification settings

peter279k/php-states

 
 

Repository files navigation

Brazanation States

Build Status Scrutinizer Code Quality Code Coverage StyleCI

A PHP library to provide Brazilian States safer, easier and fun!

Installation

Install the library using composer. Add the following to your composer.json:

{
    "require": {
        "brazanation/states": "dev-master"
    }
}

Now run the install command.

$ composer.phar install

or

$ composer require brazanation/states dev-master

Usage

use Brazanation\States\State;

$state = State::acre();

echo $state->fullName; // Acre
echo $state->shortName; // AC
echo $state->code; // 12
echo $state->timezone; // America/Rio_Branco

or

use Brazanation\States\Acre;

$state = new Acre();

echo $state->fullName; // Acre
echo $state->shortName; // AC
echo $state->code; // 12
echo $state->timezone; // America/Rio_Branco

License

MIT, hell yeah!

About

Library to provides Brazilian States as Value Objects in PHP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%