partikule/spothit-sms-bundle

将Spothit SMS API客户端与Symfony集成。

安装次数: 2,575

依赖项: 0

建议者: 0

安全性: 0

星标: 0

关注者: 1

分支: 0

开放问题: 0

类型:symfony-bundle

1.0.6 2023-12-04 14:39 UTC

This package is auto-updated.

Last update: 2024-09-04 16:20:59 UTC


README

Spothit SMS API客户端与Symfony集成。

安装

推荐通过composer安装SpothitSMSBundle。

$ composer require partikule/spothit-sms-bundle

然后在您的内核中启用它。

<?php

public function registerBundles()
{
    $bundles = [
        //...
        new Spothit\Bundle\SMSBundle\SpothitSMSBundle(),
    ];
}

配置

spothit_sms:
    api_key: "****************"

使用方法

您可以使用以下方法从Symfony容器中获取Spothit SMS API客户端:

<?php

$container->get('spothit_sms.api.client');