cdtweb/canada-provinces-list

A library that provides a list of Canadian provinces and territories.

1.1.0 2018-04-20 00:04 UTC

This package is auto-updated.

Last update: 2024-05-12 18:42:09 UTC


README

Build Status

A library that provides a list of Canadian provinces and territories.

Requirements

PHP 7

Installation

composer install cdtweb/canada-provinces-list

Usage

<?php
use Cdtweb\CanadaProvincesList;

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

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

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