This commit is contained in:
mkm 2023-11-05 23:19:49 +08:00
parent 86f2a7dbf8
commit d9b2f4418d
8 changed files with 95 additions and 5 deletions

View File

@ -58,7 +58,8 @@
"jpush/jpush": "^3.6",
"guzzlehttp/guzzle": "^6.5",
"topthink/think-api": "1.0.27",
"intervention/image": "^2.7"
"intervention/image": "^2.7",
"fastknife/ajcaptcha": "^1.2"
},
"require-dev": {
"symfony/var-dumper": "^4.2",

37
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "72a24fa7d140cac6ae5796c4bfe6cffd",
"content-hash": "f75dd06462534352b6436e333bd0daeb",
"packages": [
{
"name": "adbario/php-dot-notation",
@ -815,6 +815,41 @@
],
"time": "2022-09-18T07:06:19+00:00"
},
{
"name": "fastknife/ajcaptcha",
"version": "v1.2.2",
"source": {
"type": "git",
"url": "https://gitee.com/fastknife/aj-captcha.git",
"reference": "87c122b6cd950fd98702e929685e5e7c0c517ddc"
},
"require": {
"ext-gd": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-openssl": "*",
"intervention/image": "^2.5",
"php": ">=7.1"
},
"type": "library",
"autoload": {
"psr-4": {
"Fastknife\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"GPL-3.0-only"
],
"authors": [
{
"name": "bruce",
"email": "2777314125@qq.com"
}
],
"description": "This is a behavior verification code PHP back-end implementation package",
"time": "2023-03-29T10:35:25+00:00"
},
{
"name": "firebase/php-jwt",
"version": "v5.5.1",

View File

@ -71,6 +71,7 @@ return array(
'GrahamCampbell\\ResultType\\' => array($vendorDir . '/graham-campbell/result-type/src'),
'FormBuilder\\' => array($vendorDir . '/xaboy/form-builder/src'),
'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'),
'Fastknife\\' => array($vendorDir . '/fastknife/ajcaptcha/src'),
'Endroid\\QrCode\\' => array($vendorDir . '/endroid/qr-code/src'),
'EasyWeChat\\' => array($vendorDir . '/overtrue/wechat/src'),
'Dotenv\\' => array($vendorDir . '/vlucas/phpdotenv/src'),

View File

@ -148,6 +148,7 @@ class ComposerStaticInitb1229d2685c190533aa1234015613f09
array (
'FormBuilder\\' => 12,
'Firebase\\JWT\\' => 13,
'Fastknife\\' => 10,
),
'E' =>
array (
@ -450,6 +451,10 @@ class ComposerStaticInitb1229d2685c190533aa1234015613f09
array (
0 => __DIR__ . '/..' . '/firebase/php-jwt/src',
),
'Fastknife\\' =>
array (
0 => __DIR__ . '/..' . '/fastknife/ajcaptcha/src',
),
'Endroid\\QrCode\\' =>
array (
0 => __DIR__ . '/..' . '/endroid/qr-code/src',

View File

@ -863,6 +863,44 @@
],
"install-path": "../ezyang/htmlpurifier"
},
{
"name": "fastknife/ajcaptcha",
"version": "v1.2.2",
"version_normalized": "1.2.2.0",
"source": {
"type": "git",
"url": "https://gitee.com/fastknife/aj-captcha.git",
"reference": "87c122b6cd950fd98702e929685e5e7c0c517ddc"
},
"require": {
"ext-gd": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-openssl": "*",
"intervention/image": "^2.5",
"php": ">=7.1"
},
"time": "2023-03-29T10:35:25+00:00",
"type": "library",
"installation-source": "source",
"autoload": {
"psr-4": {
"Fastknife\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"GPL-3.0-only"
],
"authors": [
{
"name": "bruce",
"email": "2777314125@qq.com"
}
],
"description": "This is a behavior verification code PHP back-end implementation package",
"install-path": "../fastknife/ajcaptcha"
},
{
"name": "firebase/php-jwt",
"version": "v5.5.1",

View File

@ -3,7 +3,7 @@
'name' => 'topthink/think',
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '01c7ff2ddf4c63db6736300579ff884445b71d85',
'reference' => '86f2a7dbf8d77a9e0bb9de64b2446c573cdc6788',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
@ -172,6 +172,15 @@
'aliases' => array(),
'dev_requirement' => false,
),
'fastknife/ajcaptcha' => array(
'pretty_version' => 'v1.2.2',
'version' => '1.2.2.0',
'reference' => '87c122b6cd950fd98702e929685e5e7c0c517ddc',
'type' => 'library',
'install_path' => __DIR__ . '/../fastknife/ajcaptcha',
'aliases' => array(),
'dev_requirement' => false,
),
'firebase/php-jwt' => array(
'pretty_version' => 'v5.5.1',
'version' => '5.5.1.0',
@ -961,7 +970,7 @@
'topthink/think' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '01c7ff2ddf4c63db6736300579ff884445b71d85',
'reference' => '86f2a7dbf8d77a9e0bb9de64b2446c573cdc6788',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),

1
vendor/fastknife/ajcaptcha vendored Submodule

@ -0,0 +1 @@
Subproject commit 87c122b6cd950fd98702e929685e5e7c0c517ddc

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php
// This file is automatically generated at:2023-11-03 15:23:31
// This file is automatically generated at:2023-11-05 23:17:57
declare (strict_types = 1);
return array (
0 => 'think\\queue\\Service',