Download the PHP package macs/geonames-bundle without Composer

On this page you can find all versions of the php package macs/geonames-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package geonames-bundle

Geonames Bundle

Introduction

Provides access to the data exported by [geonames.org][1] into [symfony 2][sf2] applications.

What is [geonames.org][1]

From the geonames.org website:

The GeoNames geographical database covers all countries and contains over eight million placenames that are available for download free of charge.

When to use this bundle

Most useful application for this bundle is to normalize the geograhical information stored in your database such as Countries, States and Cities. Thanks to the extensive [geonames.org][1] data almost all cities, towns and suburbs are covered worldwide.

Features

Installation

  1. Install the bundle using composer:

    Or add it to your composer.json file directly

  2. Add the bundle to your AppKernel.php

    sh

    Run in your project root directory

    app/console doctrine:migrations:migrate --configuration=vendor/jjs/geonames-bundle/JJs/GeonamesBundle/migrations.xml sh app/console geonames:load:countries sh app/console geonames:load:timezones sh

    load all localities from germany with a population >= 2000

    app/console geonames:load:localities --filter="population:>=:2000" DE

load all localities with the locality-name "Kiel"

app/console geonames:load:localities --filter="nameUtf8:equals:Kiel"

load all localities that contain "Test" in the locality-name

app/console geonames:load:localities --filter="nameUtf8:contains:Test"

load all localities from germany with a population between 42000 and 100000

app/console geonames:load:localities --filter="population:>=:42000,population:<=:100000" DE
sh

All countries

app/console geonames:load:localities

Subset of countries (list the desired contries as arguments)

app/console geonames:load:localities US CA

Using the filter function (all countries)

app/console geonames:load:localities --filter="option:func:value"

Using the filter function (specific countries, as argument list)

app/console geonames:load:localities --filter="option:func:value" US CA



 [1]: http://geonames.org
 [2]: http://symfony.com
 [3]: http://www.doctrine-project.org/projects/migrations.html

All versions of geonames-bundle with dependencies

PHP Build Version
Package Version
Requires php Version *
guzzlehttp/guzzle Version >=6
macs/common Version >=1
jms/serializer Version *
symfony/framework-bundle Version >=5
knplabs/doctrine-behaviors Version >=2
ramsey/uuid Version >=3.9
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package macs/geonames-bundle contains the following files

Loading the files please wait ....