zakharov-andrew / yii2-bot-builder
Yii2 Bot Builder
Installs: 38
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Language:JavaScript
Type:yii2-extension
Requires
- php: >=7.2
README
This extension allows you to add categories to your app.
Installation
The preferred way to install this extension is through composer.
Either run
$ composer require zakharov-andrew/yii2-bot-builder
or add
"zakharov-andrew/yii2-bot-builder": "*"
to the require
section of your composer.json
file.
Subsequently, run
./yii migrate/up --migrationPath=@vendor/zakharov-andrew/yii2-bot-builder/migrations
in order to create the settings table in your database.
Or add to console config
return [ // ... 'controllerMap' => [ // ... 'migrate' => [ 'class' => 'yii\console\controllers\MigrateController', 'migrationPath' => [ '@console/migrations', // Default migration folder '@vendor/zakharov-andrew/yii2-bot-builder/src/migrations' ] ] // ... ] // ... ];
Usage
Add this to your main configuration's modules array
'modules' => [
'BotBuilder' => [
'class' => 'ZakharovAndrew\BotBuilder\Module',
'bootstrapVersion' => 5, // if use bootstrap 5
],
// ...
],
License
yii2-bot-builder it is available under a MIT License. Detailed information can be found in the LICENSE.md
.