baraja-core/country

There is no license information available for the latest version (v1.0.7) of this package.

Country manager.

v1.0.7 2023-08-12 15:07 UTC

This package is auto-updated.

Last update: 2024-04-23 04:41:19 UTC


README

Country management package.

Idea

This package provides an interface for working with countries. All countries always return as an entity that meets the Country interface. The specific implementation of the entity is decided by the package itself according to the available environment.

Possible implementations:

  • DoctrineCountry
  • FileCountry

The default country data is available in the json data file, according to which the data is subsequently updated.

Basic usage

The main control logic is in the CountryManager service, which provides communication and servicing of database entities.

The country information is stored in Doctrine entities, which are automatically generated on the first call based on a data file downloaded via the API.

We use the country.io service to retrieve the data.

Country table

Usage:

$manager = new \Baraja\Country\CountryManager;
$manager->getByCode('CZ');

Returns:

Country entity

🏳️‍🌈 Flag support

The package fully supports the ability to get a country's flag as an emoji. To get it, simply call the method above the entity:

$manager = new \Baraja\Country\CountryManager;
$country = $manager->getByCode('CZ');

echo $country->getFlag(); // return 🇨🇿