foxtes/botman-wazzup-driver

v1.0.5 2024-11-14 06:26 UTC

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.