yii2-module / yii2-insee-cog
A module that structures the data of the Official Geographic Code (fr : COG) from the INSEE
Requires
- php: >=8.0
- php-extended/php-api-fr-insee-cog-object: ^7
- php-extended/php-basic-console-logger: ^7
- php-extended/php-multiple-logger: ^7
- php-extended/php-slugifier-object: ^7
- yii2-extended/yii2-module-metadata-object: ^7
- yii2-extended/yii2-psr3-logger-bridge: ^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.1.1
- 4.1.0
- 4.0.1
- 4.0.0
- 3.5.5
- 3.5.4
- 3.5.3
- 3.5.2
- 3.5.1
- 3.5.0
- 3.4.0
- 3.3.0
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.12
- 3.1.11
- 3.1.10
- 3.1.9
- 3.1.8
- 3.1.7
- 3.1.6
- 3.1.5
- 3.1.4
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.3.5
- 2.3.4
- 2.3.3
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.9
- 2.1.8
- 2.1.7
- 2.1.6
- 2.1.5
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
This package is auto-updated.
Last update: 2024-10-31 00:24:10 UTC
README
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 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-cog ^7
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)