yii2-module/yii2-insee-cog

A module that structures the data of the Official Geographic Code (fr : COG) from the INSEE


Keywords
php, country, region, city, INSEE, yii2, department, cog, county, code officiel géographique, official geographic code, arrondissement
License
MIT

Documentation

yii2-module/yii2-insee-cog

A module that structures the data of the Official Geographic Code (fr : COG) from the INSEE

Installation

The installation of this library is made via composer. Download composer.phar from their website. Then add to your composer.json :

	"require": {
		...
		"yii2-module/yii2-insee-cog": "^2",
		...
	}

Then run php composer.phar update to install this library. The autoloading of all classes of this library is made through composer's autoloader.

Configuration

This module needs the following components to be set at the configuration level:

  • 'db_insee_cog' should be a \yii\db\Connection

If you already have a database connection, you may use the following trick :

'db_insee_cog' => function() { return \Yii::$app->get('db'); },

where 'db' is the id of your database connection.

This module uses the following parameters to be set at the configuration level:

  • NONE

Then the module should be configured as follows (in console.php or web.php) :

$config = [
	...
	'modules' => [
		...
		'insee-cog' => [
			'class' => 'Yii2Module\Yii2InseeCog\InseeCogModule',
		],
		...
	],
	...
];

License

MIT (See license file)