respect-validation/data/iso_3166-2/MN.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

29 lines
627 B
PHP

<?php
return [
"country" => "Mongolia",
"subdivisions" => [
"035" => "Orhon",
"037" => "Darhan uul",
"039" => "Hentiy",
"041" => "Hövsgöl",
"043" => "Hovd",
"046" => "Uvs",
"047" => "Töv",
"049" => "Selenge",
"051" => "Sühbaatar",
"053" => "Ömnögovĭ",
"055" => "Övörhangay",
"057" => "Dzavhan",
"059" => "Dundgovĭ",
"061" => "Dornod",
"063" => "Dornogovĭ",
"064" => "Govĭ-Sümber",
"065" => "Govĭ-Altay",
"067" => "Bulgan",
"069" => "Bayanhongor",
"071" => "Bayan-Ölgiy",
"073" => "Arhangay",
"1" => "Ulaanbaatar"
]
];