amos/cmsbridge

There is no license information available for the latest version (1.5.0) of this package.

Amos Cms Brigde


README

Cms bridge. Bridge to connect backend to frontend.

Installation

  1. You need to require this package and enable the module in your configuration.

add to composer requirements in composer.json

"/amos/cms-bridge": "dev-master as 1.0.0",

or run command bash:

composer require "amos/cms-bridge": "dev-master as 1.0.0"

add Places migrations to console modules (console/config/migrations-amos.php):

'@vendor/amos/cms-bridge/src/migrations'

Add module to your modules-amos config in backend:

	<?php
	$config = [
		'modules' => [
			'cmsbridge' => [
                            'class' => 'amos\cmsbridge\Module',
                        ],
		],
	];

Modify in common/params-local frontendUrl

	'frontendUrl' => 'https://frontend-ersaf.devel.elitedivision.it',