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

22 lines
406 B
PHP

<?php
return [
"country" => "Myanmar",
"subdivisions" => [
"01" => "Sagaing",
"02" => "Bago",
"03" => "Magway",
"04" => "Mandalay",
"05" => "Tanintharyi",
"06" => "Yangon",
"07" => "Ayeyarwady",
"11" => "Kachin",
"12" => "Kayah",
"13" => "Kayin",
"14" => "Chin",
"15" => "Mon",
"16" => "Rakhine",
"17" => "Shan",
"18" => "Nay Pyi Taw"
]
];