partikule/spothit-sms-bundle

Integrates the Spothit SMS API client with Symfony.

Installs: 2 575

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

1.0.6 2023-12-04 14:39 UTC

This package is auto-updated.

Last update: 2024-09-04 16:20:59 UTC


README

Integrates the Spothit SMS API client with Symfony.

Installation

The recommended way to install SpothitSMSBundle is through composer:

$ composer require partikule/spothit-sms-bundle

Then enable it in your kernel:

<?php

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

Configuration

spothit_sms:
    api_key: "****************"

Usage

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

<?php

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