monarobase / country-list
List of all countries with names and ISO 3166-1 codes in all languages and data formats for Laravel
Installs: 1 883 411
Dependents: 8
Suggesters: 0
Security: 0
Stars: 244
Watchers: 12
Forks: 37
Open Issues: 3
Requires
- php: >=5.6.0
- illuminate/support: ^5.8|^6|^7|^8|^9|^10|^11
- umpirsky/country-list: 2.0.*
Requires (Dev)
- phpunit/phpunit: ^8.3
README
Country List is a package for Laravel which lists all countries with names and ISO 3166-1 codes in all languages and data formats.
Installation
Run composer require monarobase/country-list
.
Laravel 5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
If you don't use auto-discovery, add the ServiceProvider to the providers
array in config/app.php
Monarobase\CountryList\CountryListServiceProvider::class,
If needed, add the following alias as well.
'Countries' => Monarobase\CountryList\CountryListFacade::class,
Usage
- Locale (en, en_US, fr, fr_CA...)
- Format (csv, flags.html, html, json, mysql.sql, php, postgresql.sql, sqlite.sql, sqlserver.sql, txt, xml, yaml)
Get all countries
Route::get('/', function() { return Countries::getList('en', 'json'); });
Get one country
Route::get('/', function() { return Countries::getOne('RU', 'en'); });