https://github.com/baraja-core/country
Country management package with Doctrine entities and flag (🏳️🌈) support.
https://github.com/baraja-core/country
country country-emoji country-flag country-management emoji-flag entity flag internationalization locale localization state
Last synced: 5 months ago
JSON representation
Country management package with Doctrine entities and flag (🏳️🌈) support.
- Host: GitHub
- URL: https://github.com/baraja-core/country
- Owner: baraja-core
- License: mit
- Created: 2021-03-02T16:32:13.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-07-10T04:49:47.000Z (almost 2 years ago)
- Last Synced: 2025-03-24T13:04:48.799Z (over 1 year ago)
- Topics: country, country-emoji, country-flag, country-management, emoji-flag, entity, flag, internationalization, locale, localization, state
- Language: PHP
- Homepage: https://php.baraja.cz
- Size: 260 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/funding.yml
- License: LICENSE
Awesome Lists containing this project
README
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](http://country.io/data/) service to retrieve the data.

Usage:
```php
$manager = new \Baraja\Country\CountryManager;
$manager->getByCode('CZ');
```
Returns:

🏳️🌈 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:
```php
$manager = new \Baraja\Country\CountryManager;
$country = $manager->getByCode('CZ');
echo $country->getFlag(); // return 🇨🇿
```