mykrzysiu/sms-api-bundle

SMSAPI.pl Bundle for Symfony2

Installs: 31

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

dev-master 2015-11-02 10:19 UTC

This package is not auto-updated.

Last update: 2024-04-17 15:43:23 UTC


README

Usage Example

$SMSAPIHandler = $this->get('smsapi')->login();

Configuration config.yml example

#SMSAPI
my_krzysiu_smsapi:
    login: "mail@example.pl"
    password: "password"
    second_channel: false

Installation

Install via Composer

Add the following lines to your composer.json file and then run php composer.phar install or php composer.phar update:

{
    "require": {
        "mykrzysiu/sms-api-bundle": "dev-master"

    }
}

Register the bundle

To start using the bundle, register it in app/AppKernel.php:

public function registerBundles()
{
    $bundles = array(
        // Other bundles...
        new MyKrzysiu\SMSAPIBundle\MyKrzysiuSMSAPIBundle(),
    );
}