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.
- Host: GitHub
- URL: https://github.com/cdtweb/us-states-list
- Owner: cdtweb
- License: mit
- Created: 2017-05-29T00:40:57.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-02-12T22:25:35.000Z (over 6 years ago)
- Last Synced: 2025-04-10T23:17:07.761Z (about 1 year ago)
- Topics: states, territories, us
- Language: PHP
- Homepage:
- Size: 13.7 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# US States List
[](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();
```