octopush/sms-bundle

Integrates the Octopush SMS API client with Symfony.

Installs: 25 787

Dependents: 0

Suggesters: 0

Security: 0

Stars: 7

Watchers: 2

Forks: 11

Open Issues: 1

Type:symfony-bundle

2.0.0 2021-03-15 10:08 UTC

This package is auto-updated.

Last update: 2024-04-15 22:57:26 UTC


README

Integrates the Octopush SMS API client with Symfony.

Installation

The recommended way to install OctopushSMSBundle is through composer:

$ composer require octopush/sms-bundle

Then enable it in your kernel:

<?php

public function registerBundles()
{
    $bundles = [
        //...
        new Octopush\Bundle\SMSBundle\OctopushSMSBundle(),
    ];
}

Configuration

octopush_sms:
    user_login: "**********@*******"
    api_key: "****************"

Usage

You can obtain Octopush SMS API client from Symfony container using:

<?php

$container->get('octopush_sms.api.client');

Examples

There is bundle setup example using Symfony Standard Edition available.

For more information about using the client, check Octopush SMS API.