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

44 lines
891 B
PHP

<?php
return [
"country" => "Nigeria",
"subdivisions" => [
"AB" => "Abia",
"AD" => "Adamawa",
"AK" => "Akwa Ibom",
"AN" => "Anambra",
"BA" => "Bauchi",
"BE" => "Benue",
"BO" => "Borno",
"BY" => "Bayelsa",
"CR" => "Cross River",
"DE" => "Delta",
"EB" => "Ebonyi",
"ED" => "Edo",
"EK" => "Ekiti",
"EN" => "Enugu",
"FC" => "Abuja Federal Capital Territory",
"GO" => "Gombe",
"IM" => "Imo",
"JI" => "Jigawa",
"KD" => "Kaduna",
"KE" => "Kebbi",
"KN" => "Kano",
"KO" => "Kogi",
"KT" => "Katsina",
"KW" => "Kwara",
"LA" => "Lagos",
"NA" => "Nasarawa",
"NI" => "Niger",
"OG" => "Ogun",
"ON" => "Ondo",
"OS" => "Osun",
"OY" => "Oyo",
"PL" => "Plateau",
"RI" => "Rivers",
"SO" => "Sokoto",
"TA" => "Taraba",
"YO" => "Yobe",
"ZA" => "Zamfara"
]
];