Download the PHP package sidm/laravel-subdivisions without Composer

On this page you can find all versions of the php package sidm/laravel-subdivisions. 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 laravel-subdivisions

Laravel Subdivisions

Total Downloads Latest Stable Version Latest Unstable Version License

Laravel Subdivisions is a bundle for Laravel 4.2, providing what is roughly all ISO 3166_2 subdivisions (a.k.a., states, provinces, etc.) for all countries. Based on the awesome work Webpatser did in his laravel-countries package.

Installation

Add sidm/laravel-subdivisions to composer.json.

"sidm/laravel-subdivisions": "dev-master"

Run composer update to pull down the latest version of the Subdivision List.

Edit app/config/app.php and add the provider and filter

'providers' => array(
    'sidm\Subdivisions\SubdivisionsServiceProvider',
)

Now add the alias.

'aliases' => array(
    'Subdivisions' => 'sidm\Subdivisions\SubdivisionsFacade',
)

Configuration

Start by publishing the configuration. The first variable is the table name, if the default name subdivisions is fine you should not modify it.

The next two variables are very important:

'country_table_name' => 'countries',
'iso_3166_2_column_name' => 'iso_3166_2',

If you only want subdivisions and do not have a countries table both of these values should be changed to null (i.e., ''). If you are using the Webpatser/laravel-countries package the defaults should work fine. If you are using another package, or have rolled your own, the country_table_name should be set to the table name that holds your list of countries, and iso_3166_2_column_name should be set to the name of the column that contains the iso_3166_2 values for each country.

When you have modified the configuration file (src/config/config.php) run the following command:

$ php artisan config:publish sidm/laravel-subdivisions

Model

Next generate the migration file:

$ php artisan subdivisions:migration

It will generate the <timestamp>_setup_subdivisions_table.php migration and the SubdivisionsSeeder.php seeder. To make sure the data is seeded insert the following code in the seeds/DatabaseSeeder.php

//Seed the subdivisions
$this->call('SubdivisionsSeeder');
$this->command->info('Seeded the subdivisions!'); 

You may now run it with the artisan migrate command:

$ php artisan migrate --seed

After running this command the filled subdivisions table will be available

Example

If you are using the Webpatser/laravel-countries package to use this in a form you can place the following in any controller:

$countries = Countries::lists('name', 'id');
$states = Subdivisions::where('country_id', '=', 840)->lists('region', 'id');
return View::make('yourview.create', compact('countries', 'states'));

Then in a form to use countries you may do the following:

{{ Form::label('country', 'Country') }}<br>
// 840 will default to the United States
{{ Form::select('country', $countries, '840') }}

Finally for states you may do the following:

{{ Form::label('state', 'State/Province/Region') }}<br>
// 4133 will default to Alabama
{{ Form::select('state', $states, '4133') }}

All versions of laravel-subdivisions with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
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 sidm/laravel-subdivisions contains the following files

Loading the files please wait ....