open20/webmeeting

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

Amos WebMeeting

1.0.0 2021-09-29 16:13 UTC

README

This plugin use HybridAuth v3.x for authentication/authorization and token management

Installation

1. The preferred way to install this extension is through composer.

Either run

composer require "open20/webmeeting:dev-master"

or add this row

"open20/webmeeting": "dev-master"

to the require section of your composer.json file.

2. Enable module in modules-amos.php:

'webmeeting' => [
    'class' => 'open20/webmeeting/WebMeeting',
],

3. Apply migrations

php yii migrate/up --migrationPath=@vendor/open20/webmeeting/src/migrations

or add this row to your migrations config in console:

<?php
return [
    '@vendor/open20/webmeeting/src/migrations',
];