wnx / php-swiss-cantons
Search for Swiss Cantons by name or abbreviation.
Fund package maintenance!
stefanzweifel
buymeacoff.ee/3oQ64YW
Installs: 38 909
Dependents: 2
Suggesters: 0
Security: 0
Stars: 17
Watchers: 3
Forks: 2
Open Issues: 2
Requires
- php: ^8.2
- ext-json: *
- ext-zip: *
- symfony/http-client: ^7.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3
- league/csv: ^9.7
- phpstan/phpstan: ^1.10
- phpunit/phpunit: ^10.1
- rector/rector: ^0.15.24
- symfony/console: ^6.0
README
Using Javascript? Check out @stefanzweifel/js-swiss-cantons.
Installation
The easiest way to install the package is by using composer. The package requires PHP 8.2.
composer require "wnx/php-swiss-cantons"
Usage
Use the CantonManager
Class to interact with this package. Below you find an example how you can use with in the Laravel Framework. Further you find all public API methods for CantonManager
and Canton
.
<?php use Wnx\SwissCantons\CantonManager; $cantonManager = new CantonManager(); /** @var \Wnx\SwissCantons\Canton $canton */ $canton = $cantonManager->getByAbbreviation('zh'); $canton = $cantonManager->getByName('Zurigo'); $canton = $cantonManager->getByZipcode(8000); // "Zürich" $cantonName = $canton->setLanguage('de')->getName();
CantonManager
Use the CantonManager
to find a Canton. It will return a new Instance of Canton
or throws an Exception
if no Canton could be found for the abbreviation, name or zipcode.
getByAbbreviation()
Find a Canton by its abbreviation. See this list for available abbreviations.
$cantonManager = new Wnx\SwissCantons\CantonManager(); /** @var \Wnx\SwissCantons\Canton $canton */ $canton = $cantonManager->getByAbbreviation('GR');
getByName()
Search for a Canton by its name. The name must exactly match one of the translations of the Canton (German, French, Italian, Romansh or English).
$cantonManager = new Wnx\SwissCantons\CantonManager(); /** @var \Wnx\SwissCantons\Canton $canton */ $canton = $cantonManager->getByName('Zürich');
getByZipcode()
Returns an array of possible Cantons for a given Zipcode. (Some zipcodes are shared between multiple Cantons).
$cantonManager = new Wnx\SwissCantons\CantonManager(); /** @var \Wnx\SwissCantons\Canton[] $cantons */ $cantons = $cantonManager->getByZipcode(3005);
getByZipcodeAndCity()
Find Canton by a given zipcode and optionally by a city name.
$cantonManager = new Wnx\SwissCantons\CantonManager(); /** @var \Wnx\SwissCantons\Canton $canton */ $canton = $cantonManager->getByZipcodeAndCity(1003); $canton = $cantonManager->getByZipcodeAndCity(1290, 'Lausanne');
Canton
setLanguage($string = 'en')
Set the language, which should be used to display the name of the canton. The following languages are currently supported.
- German (
de
) - French (
fr
) - Italian (
it
) - Romansh (
rm
) - English (
en
, default)
The method returns the current instance of Canton
for easier method chaining.
$canton->setLanguage('rm');
$canton->setLanguage('fr')->getName();
getName()
Return the Name for the given Canton. If the method is used without calling the setLanguage()
method first, it will return the name in English.
$canton->getName(); // Grisons $canton->setLanguage('de')->getName(); // Graubünden
getAbbreviation()
Return the offical abbreviation for the given Canton.
$canton->getAbbreviation(); // e.g. ZH
Cantons
This class is used internally but can also be used in your own project if you need a list of all cantons
getAll()
Returns an array containg Wnx\SwissCantons\Canton
objects.
use Wnx\SwissCantons\Cantons; $cantons = (new Cantons)->getAll();
getAllAsArray($defaultLanguage = 'en')
Returns a one dimensionl array of all Cantons. The key is the abbreviation. The value will be the translated name of the Canton. The default language is English. Pass one of the valid languages to the method, to localize the names.
use Wnx\SwissCantons\Cantons; $cantons = (new Cantons)->getAllAsArray('en'); $cantonsAsArray = $cantons->getAllAsArray(); // var_dump($cantonsAsArray); // [ // 'ZH' => 'Zurich', // 'GE' => 'Geneva', // // ... // ]
Security
If you discover a security vulnerability within this package, please send an e-mail to stefan@stefanzweifel.dev. All security vulnerabilities will be promptly addressed.
Data Sources
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
Credits
License
This project is licensed under the MIT License - see the LICENSE file for details.