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

25 lines
522 B
PHP

<?php
return [
"country" => "Paraguay",
"subdivisions" => [
"1" => "Concepción",
"10" => "Alto Paraná",
"11" => "Central",
"12" => "Ñeembucú",
"13" => "Amambay",
"14" => "Canindeyú",
"15" => "Presidente Hayes",
"16" => "Alto Paraguay",
"19" => "Boquerón",
"2" => "San Pedro",
"3" => "Cordillera",
"4" => "Guairá",
"5" => "Caaguazú",
"6" => "Caazapá",
"7" => "Itapúa",
"8" => "Misiones",
"9" => "Paraguarí",
"ASU" => "Asunción"
]
];