Download the PHP package daijulong/laravel-sms without Composer

On this page you can find all versions of the php package daijulong/laravel-sms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-sms

Laravel Sms

Laravel5使用的一个可支持多平台,易扩展的短信发送工具

仅作为短信发送工具,不涉及业务逻辑

环境要求

目前支持的短信平台

安装

Via Composer

composer.json

如果Laravel5.5以下版本:

  1. 在config/app.php文件中providers数组里加入:

  2. 在config/app.php文件中的aliases数组里加入:

配置

生成配置文件:

将在config目录下生成配置文件:sms.php,各配置项在此配置文件中有详细说明。

使用

以新建并使用一个验证码短信为例

  1. 创建短信

    短信名应首字母大写

    将在app/Sms目录下生成类文件:Captcha.php,内容如下:

    自动生成的类中已包含若干个以“agent”开头的方法,方法的多少及内容以配置文件中的agents定义自动处理 每个方法返回一个字符串,即为代理器发送时需要的短信内容(不包括变量,变量将在代理器中处理) 不同短信平台要求的短信内容不同,有的要求直接发送内容,有的要建立短信模板传入短信模板编号,在此体现

    补全内容后如下:

  2. 发送短信

    代码片断

    发送后将返回 true(发送成功) 或 false (发送失败)。

    如需查看各代理器发送结果情况,可以:

    • :所有代理器发送结果,按发送顺序
    • :最后一个代理器发送结果,发送成功的代理器或最后一个发送失败的代理器
    • 查看日志,具体请参考后续“日志”相关内容

代理器

代理器是沟通项目和短信平台的桥梁,一般一个短信平台对应一个代理器。

如果本工具包提供的代理器不能满足项目需求,可以很方便地增加新的代理器。

如果自带的某代理器不能满足需求,可新增一个同名代理器来取而代之。

代理器调用顺序

发送短信时,将按以上代理器顺序依次发送短信,直到某代理器发送成功或全部发送失败。

创建代理器

默认将在 app\Sms\Agents 目录下创建代理器类文件:MyAgent.php,其内容如下:

只需要完善send方法即可,send方法执行流程为:

  1. 取得本代理器发送短信所需要的内容

  2. 发送短信,这里根据实际情况,可能需要处理短信内容和短信内容变量

  3. 记录发送情况,模板代码已作演示,补全或选择性使用即可

  4. 返回 true 或 false 来标记发送情况

代理器配置

  1. 创建的代理器需要在配置文件(config/sms.php)中项目中注册。

    在代理器中使用配置内容:

  2. 在配置文件(config/sms.php)的 default_agent 或 spare_agents 中设置其调用优先级。

改变代理器调用顺序

某些特殊情况下需要临时调整发送短信的代理器。

  1. 重新调整默认代理器和备用代理器

  2. 仅使用指定代理器发送短信,其他代理器不再参与发送

注:以上调整仅针对当次发送有效

日志

日志功能默认开启,配置文件的为日志开关。

日志支持以下驱动:

  1. 文件:file

    发送日志文件将存储在下的sms目录中,每天生成一个日志文件。

  2. 数据库:db

    发送记录将存储于数据库中,使用此驱动前,应先创建日志表。

    生成migration文件:

    创建表:

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-sms with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0
ext-curl Version *
daijulong/sms Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package daijulong/laravel-sms contains the following files

Loading the files please wait ....