Download the PHP package serendipity_hq/component-geo-builder without Composer
On this page you can find all versions of the php package serendipity_hq/component-geo-builder. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download serendipity_hq/component-geo-builder
More information about serendipity_hq/component-geo-builder
Files in serendipity_hq/component-geo-builder
Package component-geo-builder
Short Description Parses the exports of countries from Geonames and exports the data in machine readable formats.
License MIT
Homepage https://github.com/Aerendir/component-geo-builder
Informations about the package component-geo-builder
Serendipity HQ Geo Builder
Parses the exports of countries from Geonames and exports the data in machine readable formats.
It downloads information of countries from [Geonames exports](https://www.geonames.org/export/zip/).
Ready to be integrated in Symfony apps.
Current Status
Features
- Download the exports of countries
- Build you custom lists of countries to use in your app
Do you like this library?
LEAVE A ★
or run
composer global require symfony/thanks && composer thanks
to say thank you to all libraries you use in your current project, this included!
Installation and Configuration
Install Component GeoBuilder via Composer
composer req serendipity_hq/component-geo-builder
This library follows the http://semver.org/ versioning conventions.
However, until the version 1, the minor release is treated like a major one.
So it is possible a break in the public API between minor versions (0.1 > 0.2 > 0.3).).
The component is anyway stable and can be used in production, also if it is not very flexible.
See the issues to know more about what we have in mind to implement.
Register the command in a Symfony application
Open the file config/services.yaml
and add the class of the geobuilder
command:
Building the list you need
To build the list you need, simply launch the command geobuilder:build
appending the countries you want to build lists for:
By default the command uses the Hierarchy reader and will create a lot of json
files in the kernel.cache_dir/geobuilder
folder of your Symfony App.
You can read more about readers, saving folders and more reading the full documentation.
For the moment, let's continue putting GeoBuilder
at work.
The next step is to create a form with the data we have just built.
Creating the form
To use the form types, you need to register them as services, so they can be properly initialized by Symfony.
To register them, open the file config/services.yaml
and add the HierarchyJsonType
:
Then in your form you can add the HierarchyJsonType
:
About the countries.json
file
This file will contain only the countries you built with the bin/console geobuilder:build
command.
You can get a complete list of localized countries using the Countries::getNames()
method of the symfony/intl
component.
But the Symfony component will return all countries in the world, also if you didn't built them.
Do you like this library?
LEAVE A ★
or run
composer global require symfony/thanks && composer thanks
to say thank you to all libraries you use in your current project, this included!
All versions of component-geo-builder with dependencies
ext-zip Version *
guzzlehttp/guzzle Version ^7.0
symfony/dom-crawler Version ^4.4|^5.4|^6.0
symfony/serializer Version ^4.4|^5.4|^6.0
thecodingmachine/safe Version ^1.3