cdtweb/us-states-list

A library that provides a list of US states and territories.

1.0.1 2017-11-08 22:48 UTC

This package is auto-updated.

Last update: 2024-05-13 07:52:34 UTC


README

Build Status

A library that provides a list of US states and territories.

Requirements

PHP 7

Installation

composer require cdtweb/us-states-list

Usage

<?php
use Cdtweb\UsStatesList;

// Get array of abbreviation => name for each state
$states = UsStatesList::all();

// Get array of abbreviations
$abbreviations = UsStatesList::abbreviations();

// Get array of names
$names = UsStatesList::names();