Download the PHP package smkbd/bangla-sms without Composer

On this page you can find all versions of the php package smkbd/bangla-sms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package bangla-sms

Bangla SMS

As of Laravel 10, it only supports Vonage as the SMS notification channel. But smkbd/bangla-sms package lets you utilize Bangladeshi bulk SMS services to send SMS notifications.

This package supports a number of Bangladeshi SMS service providers/gateways (see below).

Version Support

Laravel Version Support
Laravel 10 ✔️
Laravel 9 ✔️
Laravel 8 ✔️
Laravel 7 Not tested
Laravel 6 Not tested

Installation

The following command will add the latest version of the package to your Laravel project.

composer require smkbd/bangla-sms

Configuration

1. Publish the configuration file

php artisan vendor:publish --tag=bangla-sms

It will publish bangla-sms.php in your project's /config directory.

2. Configure SMS service provider keys and API tokens

You will need to set all the required keys and API tokens in the published /config/bangla-sms.php config file.

'smsq' => [
    'client_id' => 'SET_CLIENT_ID_HERE',
    'api_key' => 'SET_API_KEY_HERE',
    'sender_id' => 'SET_SENDER_ID_HERE',
    ...
]

3. Routing SMS Notification

To enable a notifiable (e.g. user) to receive SMS notifications, you need to tell the package where the SMS will be sent by defining a routeNotificationForBanglaSms method. For example, if your user phone number is stored in phone_number column of the database, you can do it in the following way-

class User extends Authenticatable
{
    use Notifiable;

    ...

    public function routeNotificationForBanglaSms()
    {
        return $this->phone_number;
    }
}

4. Configuring the Laravel Notification class

Configure your Notification class in the following way-

use Smkbd\BanglaSms\BanglaSmsChannel;

class ProductPurchased extends Notification
{

    ...

    public function via(object $notifiable): array
    {
        return [BanglaSmsChannel::class];
    }

    public function toBanglaSms(object $notifiable)
    {
        return "SMS content goes here";
    }

    ...
}

You can also utilize the queue mechanism with this channel as you would do normally.

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;

class ProductPurchased extends Notification implements ShouldQueue
{
    use Queueable;

    ...

}

Sending SMS without Notification class

You can send SMS directly (i.e. without initiating any notification class) by making use of the Smkbd\BanglaSms\Sender class in the following way-

use Smkbd\BanglaSms\Sender;

...

$sender = new Sender("My message", ["01712345678", "01987654321"]);
$sender->send();

You can also specify an SMS provider like this-

use Smkbd\BanglaSms\Sender;
use Smkbd\BanglaSms\Provider\Smsq;
...

$provider = new Smsq();
$sender = new Sender("My message", ["01712345678", "01987654321"], $provider);
$sender->send();

Available SMS providers

Provider Required info Status
SMSQ client_id, sender_id, api_token ✔️
SMS NOC token, sender_id ✔️

I don't have the required info. Where do I get it?

If you are registered with an SMS gateway service provider, you can ask them about the API tokens/IDs. They will be able to help you with it.


All versions of bangla-sms with dependencies

PHP Build Version
Package Version
Requires laravel/framework Version ^8.0|^9.0|^10.0
ext-curl Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package smkbd/bangla-sms contains the following files

Loading the files please wait ....