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", "jpush/jpush": "^3.6",
"guzzlehttp/guzzle": "^6.5", "guzzlehttp/guzzle": "^6.5",
"topthink/think-api": "1.0.27", "topthink/think-api": "1.0.27",
"intervention/image": "^2.7" "intervention/image": "^2.7",
"fastknife/ajcaptcha": "^1.2"
}, },
"require-dev": { "require-dev": {
"symfony/var-dumper": "^4.2", "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", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "72a24fa7d140cac6ae5796c4bfe6cffd", "content-hash": "f75dd06462534352b6436e333bd0daeb",
"packages": [ "packages": [
{ {
"name": "adbario/php-dot-notation", "name": "adbario/php-dot-notation",
@ -815,6 +815,41 @@
], ],
"time": "2022-09-18T07:06:19+00:00" "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", "name": "firebase/php-jwt",
"version": "v5.5.1", "version": "v5.5.1",

View File

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

View File

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

View File

@ -863,6 +863,44 @@
], ],
"install-path": "../ezyang/htmlpurifier" "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", "name": "firebase/php-jwt",
"version": "v5.5.1", "version": "v5.5.1",

View File

@ -3,7 +3,7 @@
'name' => 'topthink/think', 'name' => 'topthink/think',
'pretty_version' => 'dev-master', 'pretty_version' => 'dev-master',
'version' => 'dev-master', 'version' => 'dev-master',
'reference' => '01c7ff2ddf4c63db6736300579ff884445b71d85', 'reference' => '86f2a7dbf8d77a9e0bb9de64b2446c573cdc6788',
'type' => 'project', 'type' => 'project',
'install_path' => __DIR__ . '/../../', 'install_path' => __DIR__ . '/../../',
'aliases' => array(), 'aliases' => array(),
@ -172,6 +172,15 @@
'aliases' => array(), 'aliases' => array(),
'dev_requirement' => false, '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( 'firebase/php-jwt' => array(
'pretty_version' => 'v5.5.1', 'pretty_version' => 'v5.5.1',
'version' => '5.5.1.0', 'version' => '5.5.1.0',
@ -961,7 +970,7 @@
'topthink/think' => array( 'topthink/think' => array(
'pretty_version' => 'dev-master', 'pretty_version' => 'dev-master',
'version' => 'dev-master', 'version' => 'dev-master',
'reference' => '01c7ff2ddf4c63db6736300579ff884445b71d85', 'reference' => '86f2a7dbf8d77a9e0bb9de64b2446c573cdc6788',
'type' => 'project', 'type' => 'project',
'install_path' => __DIR__ . '/../../', 'install_path' => __DIR__ . '/../../',
'aliases' => array(), '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 <?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); declare (strict_types = 1);
return array ( return array (
0 => 'think\\queue\\Service', 0 => 'think\\queue\\Service',