Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.
/ smsmode-bundle Public archive

Integrate sMsmode API with Symfony 2 and more

License

Notifications You must be signed in to change notification settings

webeweb/smsmode-bundle

Repository files navigation

smsmode-bundle

Build Status Coverage Status Scrutinizer Code Quality Latest Stable Version License composer.lock

sMsmode bundle for Symfony 4 and more.

IMPORTANT NOTICE: This package is no longer maintained.

sMsmode provides an API that enables you to easily and automatically send SMS messages from your applications. This API provides the following functions:

  • sending immediate or scheduled SMS messages
  • managing SMS replies
  • SMS history
  • deleting SMS message
  • account balance
  • creating sub-account
  • transferring credits from one account to another one
  • adding contact
  • getting delivery report
  • callback on delivery report update

Includes:

If you like this package, pay me a beer (or a coffee) paypal.me

Compatibility

PHP Symfony

Installation

Open a command console, enter your project directory and execute the following command to download the latest stable version of this package:

$ composer require webeweb/smsmode-bundle

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

Then, enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php file of your project:

    public function registerBundles() {
        $bundles = [
            // ...
            new WBW\Bundle\SmsModeBundle\WBWSmsModeBundle(),
        ];

        // ...

        return $bundles;
    }

Once the bundle is added then do:

$ php bin/console assets:install

Add the bundle routing in the app/config/routing.yml file of your project: