Download the PHP package easyswoole/verifycode without Composer

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

验证码组件

用于生产验证码,支持自定义验证码字体,使用Composer安装

配置定义

组件本身提供了默认配置,即使不做任何设置也可以直接生成验证码,需要对验证码进行自定义配置可以使用组件提供的Config类进行动态配置

设置字符集合

可以自定义验证码生成使用的字符集合设置后从集合中随机选取,不设置则从[0-9A-Za-z]中随机选取

设置背景色

设置验证码的背景颜色,不设置默认使用白色,支持使用完整HEX,缩写HEX和RGB值设置

设置文字颜色

设置验证码的背景颜色,不设置则随机生成一个颜色,支持使用完整HEX,缩写HEX和RGB值设置

设置混淆

支持两种混淆方式,默认两种混淆都是关闭的,需要手动开启

设置字体

默认验证码类已经带有6种字体,如果需要增加自己的字体库来提高识别难度,或者指定使用的字体,可以如下设置,注意字体路径需要使用绝对路径,即文件的完整路径

其他设置

可以指定图片宽高,字体大小,随机生成的验证码位数等

链式调用

为了更流畅的进行设置,所有的配置项均支持链式调用


可以使用上方的动态配置,将设置好的配置类传入给验证码类,

如果配置比较多,也需要全站统一验证码配置,可以将验证码的配置放入配置文件,在生成时读取配置,验证码的设置类继承自SplBean,可以在设置好后使用配置类的toArray方法直接获得配置数组,实例化验证码时,读取数组重新生成Config类即可

生成

初始化配置后即可生成验证码,可以随机生成,也可以指定需要生成的验证码

生成好验证码后结果是一个Result类,可以使用getImageBody获取验证码的图片内容,使用getImageStr获得验证码字符,getMineType获得验证码的Mine信息

EasySwoole

在控制器中输出


All versions of verifycode with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1
ext-gd Version *
easyswoole/spl Version ^2.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 easyswoole/verifycode contains the following files

Loading the files please wait ....