mykrzysiu / sms-api-bundle
SMSAPI.pl Bundle for Symfony2
dev-master
2015-11-02 10:19 UTC
Requires
- php: >=5.3.2
- smsapi/php-client: *
- symfony/framework-bundle: >=2.0.0
This package is not auto-updated.
Last update: 2024-10-02 17:52:11 UTC
README
使用示例
$SMSAPIHandler = $this->get('smsapi')->login();
config.yml 配置示例
#SMSAPI my_krzysiu_smsapi: login: "mail@example.pl" password: "password" second_channel: false
安装
通过 Composer 安装
将以下行添加到您的 composer.json 文件中,然后运行 php composer.phar install 或 php composer.phar update
{
"require": {
"mykrzysiu/sms-api-bundle": "dev-master"
}
}
注册捆绑包
要开始使用此捆绑包,请在 app/AppKernel.php 中注册它
public function registerBundles() { $bundles = array( // Other bundles... new MyKrzysiu\SMSAPIBundle\MyKrzysiuSMSAPIBundle(), ); }