Skip to content

A collection of standards as PHP Enums: ISO3166, ISO4217, ISO639...

License

Notifications You must be signed in to change notification settings

PrinsFrank/standards

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7c2ff92 · Mar 22, 2023
Jan 1, 2023
Mar 22, 2023
Nov 19, 2022
Mar 22, 2023
Mar 22, 2023
Jul 25, 2022
Jul 14, 2022
Jul 15, 2022
Jun 7, 2022
Dec 5, 2022
Jul 10, 2022
Mar 19, 2023
Jul 11, 2022
Jul 14, 2022

Repository files navigation

Banner

Standards

GitHub PHP Version Support codecov

A collection of standards as PHP Enums

Daily updated from their sources, whether it is ISO or IANA directly, or a maintaining party like the six group or the US library of congress.

Setup

Note Make sure you are running PHP 8.1 or higher to use this package

To start right away, run the following command in your composer project;

composer require prinsfrank/standards

Or for development only;

composer require prinsfrank/standards --dev

How this package works

This package implements a bunch of specs as PHP Enums, so you can typehint them in methods. Currently, all specs are implemented as backed enums. That means that besides a name, they have also an internal 'value', either as an integer or a string.

In the Country, Currency and language specifications, there is also a relation between different enums. For example, the Alpha2 country code 'NL' is related to the Alpha3 'NLD', the numeric value '528' and the name 'Netherlands (the)'. Internally, these specs rely on the fact that the keys for these values is identical, so it is possible to convert between these.

Country

Daily country spec update

All the Alpha2, Alpha3, Numeric and Name values have a corresponding enum in the other country enums. These can be converted using their corresponding methods.

Key ISO3166_1_Alpha_2 ISO3166_1_Alpha_3 ISO3166_1_Numeric ISO3166_1_Name
Netherlands NL NLD 528 Netherlands (the)
Turkey TR TUR 792 Türkiye
... ... ... ... ...

Currency

Daily currency spec update

All the Alpha3, Numeric and Name values have a corresponding enum in the other currency enums. These can be converted using their corresponding methods.

Key ISO4217_Alpha_3 ISO4217_Numeric ISO4217_Name
Euro EUR 978 Euro
Turkish_Lira TRY 949 Turkish Lira
... ... ... ...

Language

Daily language spec update

The language specification is a bit more complex, as there are 20 alpha3 codes that have both a Bibliographic and a Terminology code. All the other ones have a common one. So if you decide you want the alpha3 representation of an alpha2 code, you can convert it to either Terminology or Bibliographic, where if it is not available you will get an instance of the common enum. More documentation can be found here.

Key ISO639_1_Alpha_2 ISO639_2_Alpha_3_Bibliographic ISO639_2_Alpha_3_Common ISO639_2_Alpha_3_Terminology ISO639_Name
Dutch_Flemish nl dut nld Dutch; Flemish
Turkish tr tur Turkish
... ... ... ... ... ...

Country Calling Codes

Country calling codes are quite straight forward. One Exception is that the +1 prefix is used across a lot of countries, and there is no standard for sub numbering plans.

Key ITU_T_E_164
Netherlands_Kingdom_of_the 31
Turkey 90

HTTP Status Codes

Daily HTTP Status code spec update

HTTP Status codes are quite straight forward. For some code examples you can look in the documentation.

Key HttpStatusCode
Moved_Permanently 301
Not_Found 404
... ...

HTTP Methods

Daily HTTP method spec update

Key Value
Post POST
Put PUT
BaselineControl BASELINE-CONTROL
... ...