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

31 lines
667 B
PHP

<?php
return [
"country" => "Argentina",
"subdivisions" => [
"A" => "Salta",
"B" => "Buenos Aires",
"C" => "Ciudad Autónoma de Buenos Aires",
"D" => "San Luis",
"E" => "Entre Ríos",
"F" => "La Rioja",
"G" => "Santiago del Estero",
"H" => "Chaco",
"J" => "San Juan",
"K" => "Catamarca",
"L" => "La Pampa",
"M" => "Mendoza",
"N" => "Misiones",
"P" => "Formosa",
"Q" => "Neuquén",
"R" => "Río Negro",
"S" => "Santa Fe",
"T" => "Tucumán",
"U" => "Chubut",
"V" => "Tierra del Fuego",
"W" => "Corrientes",
"X" => "Córdoba",
"Y" => "Jujuy",
"Z" => "Santa Cruz"
]
];