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

43 lines
1 KiB
PHP

<?php
return [
"country" => "India",
"subdivisions" => [
"AN" => "Andaman and Nicobar Islands",
"AP" => "Andhra Pradesh",
"AR" => "Arunāchal Pradesh",
"AS" => "Assam",
"BR" => "Bihār",
"CH" => "Chandīgarh",
"CT" => "Chhattīsgarh",
"DH" => "Dādra and Nagar Haveli and Damān and Diu",
"DL" => "Delhi",
"GA" => "Goa",
"GJ" => "Gujarāt",
"HP" => "Himāchal Pradesh",
"HR" => "Haryāna",
"JH" => "Jhārkhand",
"JK" => "Jammu and Kashmīr",
"KA" => "Karnātaka",
"KL" => "Kerala",
"LA" => "Ladākh",
"LD" => "Lakshadweep",
"MH" => "Mahārāshtra",
"ML" => "Meghālaya",
"MN" => "Manipur",
"MP" => "Madhya Pradesh",
"MZ" => "Mizoram",
"NL" => "Nāgāland",
"OR" => "Odisha",
"PB" => "Punjab",
"PY" => "Puducherry",
"RJ" => "Rājasthān",
"SK" => "Sikkim",
"TG" => "Telangāna",
"TN" => "Tamil Nādu",
"TR" => "Tripura",
"UP" => "Uttar Pradesh",
"UT" => "Uttarākhand",
"WB" => "West Bengal"
]
];