1. Go to this page and download the library: Download rcm/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/ */
rcm / config example snippets
// Example of a config array as might be defined in ZF2 config
'Reliv\RcmConfig' => [
'myCategory' => [
'_DEFAULT' => [
'myPropertyName1' => 'my value',
'myPropertyName2' => ['my value1', 'my value2'],
],
'myContext' => [
'myPropertyName1' => 'my value over-ride',
]
]
],
// Example of defining a model for a category
'Reliv\RcmConfig\Models' => [
'myCategory' => \Reliv\RcmConfig\Model\ConfigModel::class,
],