league/iso3166

A PHP library providing ISO 3166-1 data.

Code Coverage License

What is ISO 3166-1

ISO 3166-1 is part of the ISO 3166 standard published by the International Organization for Standardization (ISO), and defines codes for the names of countries, dependent territories, and special areas of geographical interest. The official name of the standard is Codes for the representation of names of countries and their subdivisions – Part 1: Country codes. It defines three sets of country codes:

-- Wikipedia

Installing

$ composer require league/iso3166

Using

See using section of the documentation.

Quick guide:

$data = (new League\ISO3166\ISO3166)->name($name);
$data = (new League\ISO3166\ISO3166)->alpha2($alpha2);
$data = (new League\ISO3166\ISO3166)->alpha3($alpha3);
$data = (new League\ISO3166\ISO3166)->numeric($numeric);

Data sample:

[
    'name' => 'Netherlands',
    'alpha2' => 'NL',
    'alpha3' => 'NLD',
    'numeric' => '528',
    'currency' => [
        'EUR',
    ]
]

Contributing

Feel free to submit a pull request or create an issue.

License

league/iso3166 is licensed under the MIT license.

Source(s)

Join libs.tech

...and unlock some superpowers

GitHub

We won't share your data with anyone else.