Yii2 Bot Builder. Module for creating a diagram of chat bots
Installation • Usage • Contributing • License
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'
]
]
// ...
]
// ...
];
Add this to your main configuration's modules array
'modules' => [
'BotBuilder' => [
'class' => 'ZakharovAndrew\BotBuilder\Module',
'bootstrapVersion' => 5, // if use bootstrap 5
],
// ...
],
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
yii2-bot-builder it is available under a MIT License. Detailed information can be found in the LICENSE.md
.