yii2-module/yii2-insee-ban

A module that structures the data of the Base des Adresses Nationales (fr : BAN) from the INSEE and others


Keywords
php, address, group, base, position, INSEE, france, yii2, ign, ban, dgfip, etalab, nationale, adresses
License
MIT

Documentation

yii2-module/yii2-module-ban

A module that structures the data of the Base des Adresses Nationales (fr : BAN) from the INSEE and others.

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-ban": "^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_ban' should be a \yii\db\Connection

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

'db_insee_ban' => 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-ban' => [
			'class' => 'Yii2Module\Yii2InseeBan\InseeBanModule',
		],
		...
	],
	...
];

License

MIT (See license file)