cdtweb / us-states-list
A library that provides a list of US states and territories.
Installs: 201 647
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7
Requires (Dev)
- phpunit/phpunit: ^6.1
- squizlabs/php_codesniffer: 2.*
This package is auto-updated.
Last update: 2025-01-13 09:08:18 UTC
README
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();