Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/chipslays/alisa
Browse files Browse the repository at this point in the history
  • Loading branch information
chipslays committed Feb 12, 2024
2 parents 2831939 + befe770 commit 1392b71
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,28 @@ Alisa — это библиотека для разработки навыков
composer require alisa/alisa:@beta
```

## Примеры

Простой echo скилл в виде хомяка-повторюшки:

```php
$skill = new Alisa\Skill;

$skill->onStart(function (Alisa\Context $ctx) {
$ctx->reply('{effect:hamster} Привет, я хомяк-повторюшка!');
});

$skill->onFallback(function (Alisa\Context $ctx) {
$ctx->reply('{effect:hamster}' . $ctx->request()->get('request.command'));
});

$skill->run();
```

## Документация

Сейчас библиотека обкатывается, документация и примеры будут после обкатки.

## Лицензия

MIT
MIT

0 comments on commit 1392b71

Please sign in to comment.