respect-validation/data/iso_3166-2/FI.php
Alexandre Gomes Gaigalas 6173757f63 Use PHP files and setup a runtime cache for CountryInfo
Previously, we were loading country info from a JSON file. This
changes it to use PHP files instead. It also caches these resources
across calls avoiding these files to be loaded more than once
per process.
2023-02-19 00:19:10 -03:00

26 lines
586 B
PHP

<?php
return [
"country" => "Finland",
"subdivisions" => [
"01" => "Åland",
"02" => "Etelä-Karjala",
"03" => "Etelä-Pohjanmaa",
"04" => "Etelä-Savo",
"05" => "Kainuu",
"06" => "Kanta-Häme",
"07" => "Keski-Pohjanmaa",
"08" => "Keski-Suomi",
"09" => "Kymenlaakso",
"10" => "Lappi",
"11" => "Pirkanmaa",
"12" => "Pohjanmaa",
"13" => "Pohjois-Karjala",
"14" => "Pohjois-Pohjanmaa",
"15" => "Pohjois-Savo",
"16" => "Päijät-Häme",
"17" => "Satakunta",
"18" => "Uusimaa",
"19" => "Varsinais-Suomi"
]
];