Download the PHP package hollisho/webman-request without Composer

On this page you can find all versions of the php package hollisho/webman-request. 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 webman-request

Webman框架请求验证器扩展包

本扩展包为Webman框架提供了一个优雅的请求验证解决方案,内置了ThinkPHP验证器,通过依赖注入方式自动生成请求对象,并对对象的字段进行校验。

安装

通过Composer安装:

基本使用

定义请求类

首先,创建一个继承自WebmanRequest的请求类:

在控制器中使用

在控制器中通过依赖注入方式使用请求类:

常用验证规则

本扩展包内置了ThinkPHP验证器的所有验证规则,以下是一些常用的验证规则:

规则 说明 示例
require 必须填写 'name' => 'require'
number 必须是数字 'age' => 'number'
integer 必须是整数 'count' => 'integer'
float 必须是浮点数 'price' => 'float'
boolean 必须是布尔值 'status' => 'boolean'
email 必须是邮箱格式 'email' => 'email'
array 必须是数组 'tags' => 'array'
date 必须是日期格式 'birthday' => 'date'
alpha 必须是字母 'name' => 'alpha'
alphaNum 必须是字母和数字 'account' => 'alphaNum'
alphaDash 必须是字母、数字、下划线或破折号 'username' => 'alphaDash'
chs 必须是中文 'name' => 'chs'
chsAlpha 必须是中文或字母 'name' => 'chsAlpha'
chsAlphaNum 必须是中文、字母或数字 'name' => 'chsAlphaNum'
chsDash 必须是中文、字母、数字、下划线或破折号 'name' => 'chsDash'
url 必须是URL地址 'website' => 'url'
ip 必须是IP地址 'ip' => 'ip'
mobile 必须是手机号码 'mobile' => 'mobile'
idCard 必须是身份证号码 'idcard' => 'idCard'
zipCode 必须是邮政编码 'zipcode' => 'zipCode'
in 必须在范围内 'type' => 'in:1,2,3'
notIn 必须不在范围内 'type' => 'notIn:1,2,3'
between 必须在范围内 'age' => 'between:18,60'
notBetween 必须不在范围内 'age' => 'notBetween:0,17'
length 长度必须在范围内 'name' => 'length:2,20'
max 最大长度 'name' => 'max:20'
min 最小长度 'password' => 'min:6'
after 必须在日期之后 'begin_time' => 'after:2020-01-01'
before 必须在日期之前 'end_time' => 'before:2030-01-01'
confirm 必须和指定字段相同 'repassword' => 'confirm:password'
different 必须和指定字段不同 'nickname' => 'different:username'
eq 必须等于指定值 'status' => 'eq:1'
neq 必须不等于指定值 'status' => 'neq:0'
gt 必须大于指定值 'age' => 'gt:18'
lt 必须小于指定值 'age' => 'lt:60'
egt 必须大于等于指定值 'age' => 'egt:18'
elt 必须小于等于指定值 'age' => 'elt:60'
regex 必须满足正则表达式 'zip' => 'regex:/^\d{6}$/'

总结

hollisho/webman-request扩展包为Webman框架提供了一个强大而灵活的请求验证解决方案,通过依赖注入的方式自动验证请求参数,使代码更加简洁和易于维护。它支持多种验证规则、自定义验证规则、验证场景等高级功能,能够满足各种复杂的验证需求。

参考链接

特别说明

特别说明


All versions of webman-request with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2
workerman/webman-framework Version ^1.5.0
topthink/think-validate Version ^2.0
hollisho/object-builder Version ^1.0
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 hollisho/webman-request contains the following files

Loading the files please wait ....