open20/cmsbridge

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

Open20 Cms Brigde

1.5.0 2023-05-23 11:05 UTC

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

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

or run command bash:

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

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

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

Add module to your modules-open20 config in backend:

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

Modify in common/params-local frontendUrl

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