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

23 lines
519 B
PHP

<?php
return [
"country" => "Poland",
"subdivisions" => [
"02" => "Dolnośląskie",
"04" => "Kujawsko-pomorskie",
"06" => "Lubelskie",
"08" => "Lubuskie",
"10" => "Łódzkie",
"12" => "Małopolskie",
"14" => "Mazowieckie",
"16" => "Opolskie",
"18" => "Podkarpackie",
"20" => "Podlaskie",
"22" => "Pomorskie",
"24" => "Śląskie",
"26" => "Świętokrzyskie",
"28" => "Warmińsko-mazurskie",
"30" => "Wielkopolskie",
"32" => "Zachodniopomorskie"
]
];