foxtes / botman-wazzup-driver
v1.0.5
2024-11-14 06:26 UTC
Requires
- php: >=7.4
- ext-curl: *
- ext-fileinfo: *
- ext-json: *
- botman/botman: ~2.0|~3.0
- nyholm/psr7: ^1.2
- psr/http-client: ^1.0
Requires (Dev)
- botman/studio-addons: ~1.0
- illuminate/contracts: ~5.5.0
- mockery/mockery: ~1.3.3
- phpunit/phpunit: ~5.0
This package is auto-updated.
Last update: 2025-03-14 07:06:14 UTC
README
Requirements
- PHP 7.4 or higher
- Any http client with PSR-18 support
- Botman
Install driver
composer require foxtes/botman-wazzup-driver
Then you should define in the .env file the following properties:
WHATSAPP_PARTNER="https://api.wazzup24.com/v3/" WHATSAPP_TOKEN=your_token WHATSAPP_CHANEL_ID=your_chanel_id
If you don't use BotMan Studio, the driver should be applied manually:
// ... // Applying driver DriverManager::loadDriver(\BotMan\Drivers\WazzupDriver\WhatsAppDriver::class); // ...
Quick guide with examples
In usage examples, the used file is routes/botman.php
.
$botman->hears('Hello', function ($bot) { $bot->reply('Hi, '.$bot->getUser()->getFirstName()); });
See also
License
Wazzup driver is made under the terms of MIT license. BotMan is free software distributed under the terms of the MIT license.