LaravelPackages.net
Acme Inc.
Toggle sidebar
mr687/wamazing

A Wrapper Wamazing API for Laravel

3
0
About mr687/wamazing

mr687/wamazing is a Laravel package for a wrapper wamazing api for laravel. It currently has 0 GitHub stars and 3 downloads on Packagist. Install it with composer require mr687/wamazing. Discover more Laravel packages by mr687 or browse all Laravel packages to compare alternatives.

Last updated

Very short description of the package

Latest Version on Packagist Build Status Quality Score Total Downloads

Wamazing for Laravel

Installation

You can install the package via composer:

composer require mr687/wamazing

The service provider should automatically register for Laravel > 5.4.

For Laravel < 5.5, open config/app.php and, within the providers array, append:

Mr687\Wamazing\Providers\WamazingServiceProvider::class

Configuration file

Publish the configuration file

php artisan vendor:publish --provider="Mr687\Wamazing\Providers\ZoomServiceProvider"

This will create a wamazing/config.php within your config directory, where you add value for secret token.

....

WAMAZING_TOKEN=
WAMAZING_DEVICE=

Usage

Send Text.

use Mr687\Wamazing\Facades\Wamazing;

Wamazing::chat()
  ->to('6282325xxx')
  ->message('<b>Hai</b>')
  ->sendText();

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.

Comments