dev-master
9999999-devSMSAPI.pl Bundle for Symfony2
MIT
The Requires
- php >=5.3.2
- symfony/framework-bundle >=2.0.0
- smsapi/php-client *
by Krzysztof Kobiela (MyKrzysiu)
smsapi
SMSAPI.pl Bundle for Symfony2
``` php $SMSAPIHandler = $this->get('smsapi')->login();, (*1)
Configuration config.yml example ------------- ``` yml #SMSAPI my_krzysiu_smsapi: login: "mail@example.pl" password: "password" second_channel: false
Add the following lines to your composer.json
file and then run php composer.phar install
or php composer.phar update
:, (*2)
{ "require": { "mykrzysiu/sms-api-bundle": "dev-master" } }
To start using the bundle, register it in app/AppKernel.php
:, (*3)
public function registerBundles() { $bundles = array( // Other bundles... new MyKrzysiu\SMSAPIBundle\MyKrzysiuSMSAPIBundle(), ); }
SMSAPI.pl Bundle for Symfony2
MIT
smsapi