Skip to content

Country management package with Doctrine entities and flag (πŸ³οΈβ€πŸŒˆ) support.

License

Notifications You must be signed in to change notification settings

baraja-core/country

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

31 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation


Country

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 πŸ‡¨πŸ‡Ώ