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

34 lines
811 B
PHP

<?php
return [
"country" => "Seychelles",
"subdivisions" => [
"01" => "Anse aux Pins",
"02" => "Anse Boileau",
"03" => "Anse Etoile",
"04" => "Au Cap",
"05" => "Anse Royale",
"06" => "Baie Lazare",
"07" => "Baie Sainte Anne",
"08" => "Beau Vallon",
"09" => "Bel Air",
"10" => "Bel Ombre",
"11" => "Cascade",
"12" => "Glacis",
"13" => "Grand Anse Mahe",
"14" => "Grand Anse Praslin",
"15" => "La Digue",
"16" => "English River",
"17" => "Mont Buxton",
"18" => "Mont Fleuri",
"19" => "Plaisance",
"20" => "Pointe Larue",
"21" => "Port Glaud",
"22" => "Saint Louis",
"23" => "Takamaka",
"24" => "Les Mamelles",
"25" => "Roche Caiman",
"26" => "Ile Perseverance I",
"27" => "Ile Perseverance II"
]
];