yii2-module / yii2-insee-naf
A module that structures the data of the French Activity Nomenclature (fr : NAF) from the INSEE
Requires
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.2
- 6.1.1
- 6.1.0
- 6.0.2
- 6.0.1
- 6.0.0
- 5.0.3
- 5.0.2
- 5.0.1
- 5.0.0
- 4.0.2
- 4.0.1
- 4.0.0
- 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.7
- 3.3.6
- 3.3.5
- 3.3.4
- 3.3.3
- 3.3.2
- 3.3.1
- 3.3.0
- 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.2
- 3.0.1
- 3.0.0
- 2.2.1
- 2.2.0
- 2.1.0
- 2.0.2
- 2.0.1
- 2.0.0
This package is auto-updated.
Last update: 2024-10-31 00:22:28 UTC
README
A module that structures the data of the French Activity Nomenclature (fr : NAF) 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-naf ^7
Configuration
This module needs the following components to be set at the configuration level:
- 'db_insee_naf' should be a
\yii\db\Connection
If you already have a database connection, you may use the following trick :
'db_insee_naf' => 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-naf' => [
'class' => 'Yii2Module\Yii2InseeNaf\InseeNafModule',
],
...
],
...
];
License
MIT (See license file)