zephyr/allmysms-bundle

This bundle provides load of AllMySMS API for your Symfony Project

1.0.0 2018-03-14 16:16 UTC

This package is auto-updated.

Last update: 2024-04-12 07:05:40 UTC


README

This bundle provides AllMYSMS Library as symfony service.

It is compatible and tested with PHP 5.5, 5.6, 7.0, 7.1, on Symfony 3.* and 4.*.

Documentation

Installation with Symfony Flex

Use the composer command in your Symfony Flex project :

composer req allmysms

Installation Symfony 2.x, 3.x

Install the bundle

composer require zephyr/allmysms-bundle

Add the bundle to AppKernel

<?php
//...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...            
            new ZephyrHQ\AllMySMSBundle\ZephyrHQAllMySMSBundle(),
            // ...
        ];
    }
    // ...
}

Add this configuration to config.yml

zephyrhq_allmysms:
    api_login: '%env(ALLMYSMS_LOGIN)%'
    api_key: '%env(ALLMYSMS_KEY)%'
    simulate: '%env(ALLMYSMS_SIMULATE)%'
    simple_sms: false

Support

Please consider opening a question on StackOverflow using the allmysms tag.

Github Issues are dedicated to bug reports and feature requests.

Contributing

See the CONTRIBUTING file.

Credits

License

This bundle is under the MIT license.
For the whole copyright, see the LICENSE file distributed with this source code.