1. Go to this page and download the library: Download sersid/yii2-config library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sersid / yii2-config example snippets
$config = [
...
'components' => [
...
'config' => [
'class' => 'sersid\config\components\Config',
'coding' => '...', // json of serialize. Default 'json'
'idConnection' => 'db', // The ID of the connection component
'tableName' => '{{%config}}', //Config table name
'idCache' => 'cache', // The ID of the cache component. Default null (no caching)
'cacheKey' => 'config.component', // The key identifying the value to be cached
'cacheDuration' => 360, // The number of seconds in which the cached value will expire. 0 means never expire. Default 0
],
]
];