cdtweb/us-states-list

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

Installs: 224 657

Dependents: 0

Suggesters: 0

Security: 0

Stars: 5

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/cdtweb/us-states-list

1.0.1 2017-11-08 22:48 UTC

This package is auto-updated.

Last update: 2025-09-13 10:28:36 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();