An open API service indexing awesome lists of open source software.

https://github.com/cdtweb/us-states-list

A library that provides a list of US states and territories.
https://github.com/cdtweb/us-states-list

states territories us

Last synced: about 1 year ago
JSON representation

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

Awesome Lists containing this project

README

          

# US States List

[![Build Status](https://travis-ci.org/cdtweb/us-states-list.svg?branch=master)](https://travis-ci.org/cdtweb/us-states-list)

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

## Requirements

PHP 7

## Installation

composer require cdtweb/us-states-list

## Usage

```php
name for each state
$states = UsStatesList::all();

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

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

```