yii2-module / yii2-insee-ban
A module that structures the data of the Base des Adresses Nationales (fr : BAN) from the INSEE and others
Requires
- php: >=8.0
- php-extended/php-api-fr-insee-ban-object: ^7
- php-extended/php-basic-console-logger: ^7
- php-extended/php-http-client-factory-object: ^7
- php-extended/php-http-message-factory-psr17: ^7
- php-extended/php-multiple-logger: ^7
- php-extended/php-slugifier-object: ^7
- php-extended/polyfill-str-levenshtein: ^1
- yii2-extended/yii2-module-metadata-object: ^7
- yii2-extended/yii2-psr3-logger-bridge: ^7
- yii2-module/yii2-insee-cog: ^7
- yii2-module/yii2-log: ^7
- yii2-module/yii2-module-helper: ^7
- yiisoft/yii2: ^2
Requires (Dev)
- dev-master
- 7.0.5
- 7.0.4
- 7.0.3
- 7.0.2
- 7.0.1
- 7.0.0
- 6.2.4
- 6.2.3
- 6.2.2
- 6.2.1
- 6.2.0
- 6.1.4
- 6.1.3
- 6.1.2
- 6.1.1
- 6.1.0
- 6.0.0
- 5.0.2
- 5.0.1
- 5.0.0
- 4.0.6
- 4.0.5
- 4.0.4
- 4.0.3
- 4.0.2
- 4.0.1
- 4.0.0
- 3.6.6
- 3.6.5
- 3.6.4
- 3.6.3
- 3.6.2
- 3.6.1
- 3.6.0
- 3.5.0
- 3.4.0
- 3.3.5
- 3.3.4
- 3.3.3
- 3.3.2
- 3.3.1
- 3.3.0
- 3.2.11
- 3.2.10
- 3.2.9
- 3.2.8
- 3.2.7
- 3.2.6
- 3.2.5
- 3.2.4
- 3.2.3
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.5
- 3.1.4
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.16
- 3.0.15
- 3.0.14
- 3.0.13
- 3.0.12
- 3.0.11
- 3.0.10
- 3.0.9
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.3.13
- 2.3.12
- 2.3.11
- 2.3.10
- 2.3.9
- 2.3.8
- 2.3.7
- 2.3.6
- 2.3.5
- 2.3.4
- 2.3.3
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.0
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
This package is auto-updated.
Last update: 2024-10-31 00:22:10 UTC
README
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 and the autoloading of all classes of this library is made through their autoloader.
- Download
composer.phar
from their website. - Then run the following command to install this library as dependency :
php composer.phar install yii2-module/yii2-insee-ban ^7
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:
InseeBanModule::tempDirPath
may be configured to a valid directory or alias known by Yii. Its default is@app/runtime/insee-ban
, which is automatically created if it does not exist. This parameter is used to download and uncompress the csv source files of the BAN, and should be cleared occasionnally.
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)