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

33 lines
685 B
PHP

<?php
return [
"country" => "Nepal",
"subdivisions" => [
"1" => "Central",
"2" => "Mid Western",
"3" => "Western",
"4" => "Eastern",
"5" => "Far Western",
"BA" => "Bagmati",
"BH" => "Bheri",
"DH" => "Dhawalagiri",
"GA" => "Gandaki",
"JA" => "Janakpur",
"KA" => "Karnali",
"KO" => "Kosi",
"LU" => "Lumbini",
"MA" => "Mahakali",
"ME" => "Mechi",
"NA" => "Narayani",
"P1" => "Province 1",
"P2" => "Province 2",
"P3" => "Bāgmatī",
"P4" => "Gandaki",
"P5" => "Province 5",
"P6" => "Karnali",
"P7" => "Sudūr Pashchim",
"RA" => "Rapti",
"SA" => "Sagarmatha",
"SE" => "Seti"
]
];