Download the PHP package nibynool/smpp-client-bundle without Composer
On this page you can find all versions of the php package nibynool/smpp-client-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download nibynool/smpp-client-bundle
More information about nibynool/smpp-client-bundle
Files in nibynool/smpp-client-bundle
Download nibynool/smpp-client-bundle
More information about nibynool/smpp-client-bundle
Files in nibynool/smpp-client-bundle
Vendor nibynool
Package smpp-client-bundle
Short Description Symfony SMPP Client Bundle
License MIT
Homepage https://github.com/nibynool/SmppClientBundle
Package smpp-client-bundle
Short Description Symfony SMPP Client Bundle
License MIT
Homepage https://github.com/nibynool/SmppClientBundle
Keywords Send SMS via SMPP
Please rate this library. Is it a good library?
Informations about the package smpp-client-bundle
SmppClientBundle
PHP 5 based SMPP client bundle for Symfony2. Forked from https://github.com/kronas/SmppClientBundle, which in turn was forked from https://github.com/onlinecity/php-smpp
For now, it only sends messages.. trasmitter mode
Installation
Add to composer.json
"require": {
"nibynool/smpp-client-bundle": "^1.2.0"
}
Add to AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Nibynool\SmppClientBundle\NibynoolSmppClientBundle(),
);
return $bundles;
}
Add to config.yml
nibynool_smpp_client:
host: %smpp_host%
port: %smpp_port%
login: %smpp_login%
password: %smpp_password%
signature: %smpp_signature%
Usage
$smpp = $this->get('nibynool_smpp_client.transmitter');
$smpp->send($phone_number, $message);
*Phone number must be in international format without "+"
**Function "send" return a message ID
License
This bundle is under the MIT license. See the complete license in the bundle:
Resources/meta/LICENSE
All versions of smpp-client-bundle with dependencies
PHP Build Version
Package Version
The package nibynool/smpp-client-bundle contains the following files
Loading the files please wait ....