You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You now have a new Artisan command that helps you to test and develop your chatbot locally:
20
+
21
+
```php
22
+
php artisan botman:tinker
23
+
```
24
+
25
+
## About BotMan
26
+
27
+
BotMan is a framework agnostic PHP library that is designed to simplify the task of developing innovative bots for multiple messaging platforms, including [Slack](http://slack.com), [Telegram](http://telegram.me), [Microsoft Bot Framework](https://dev.botframework.com/), [Nexmo](https://nexmo.com), [HipChat](http://hipchat.com), [Facebook Messenger](http://messenger.com) and [WeChat](http://web.wechat.com).
28
+
29
+
```php
30
+
$botman->hears('I want cross-platform bots with PHP!', function (BotMan $bot) {
31
+
$bot->reply('Look no further!');
32
+
});
33
+
```
34
+
35
+
## Documentation
36
+
37
+
You can find the BotMan documentation at [http://botman.io](http://botman.io).
38
+
39
+
## Contributing
40
+
41
+
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
42
+
43
+
## Security Vulnerabilities
44
+
45
+
If you discover a security vulnerability within BotMan, please send an e-mail to Marcel Pociot at [email protected]. All security vulnerabilities will be promptly addressed.
46
+
47
+
## License
48
+
49
+
BotMan Tinker is free software distributed under the terms of the MIT license.
0 commit comments