mykrzysiu/sms-api-bundle

SMSAPI.pl Bundle for Symfony2

安装: 31

依赖者: 0

建议者: 0

安全性: 0

星星: 0

关注者: 2

分支: 0

开放问题: 0

类型:symfony-bundle

dev-master 2015-11-02 10:19 UTC

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 installphp composer.phar update

{
    "require": {
        "mykrzysiu/sms-api-bundle": "dev-master"

    }
}

注册捆绑包

要开始使用此捆绑包,请在 app/AppKernel.php 中注册它

public function registerBundles()
{
    $bundles = array(
        // Other bundles...
        new MyKrzysiu\SMSAPIBundle\MyKrzysiuSMSAPIBundle(),
    );
}