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

27 lines
582 B
PHP

<?php
return [
"country" => "Portugal",
"subdivisions" => [
"01" => "Aveiro",
"02" => "Beja",
"03" => "Braga",
"04" => "Bragança",
"05" => "Castelo Branco",
"06" => "Coimbra",
"07" => "Évora",
"08" => "Faro",
"09" => "Guarda",
"10" => "Leiria",
"11" => "Lisboa",
"12" => "Portalegre",
"13" => "Porto",
"14" => "Santarém",
"15" => "Setúbal",
"16" => "Viana do Castelo",
"17" => "Vila Real",
"18" => "Viseu",
"20" => "Região Autónoma dos Açores",
"30" => "Região Autónoma da Madeira"
]
];