在 Laravel-8 验证码启动服务器问题
in Laravel-8 Captcha starting on server problem
我该如何解决有关 Mews Captcha 的问题?
In ProviderRepository.php line 208:
Class 'Mews\Captcha\CaptchaServiceProvider' not found
Mews 验证码未正确安装或配置。
请按照以下步骤操作:
作曲家要求mews/captcha
如果一切顺利,那么
在 config/app.php 中找到提供商密钥并注册验证码服务提供商。
'providers' => [
// ...
'Mews\Captcha\CaptchaServiceProvider',
]
要使用您自己的设置,请发布配置。
$ php artisan vendor:publish
config/captcha.php
return [
'default' => [
'length' => 5,
'width' => 120,
'height' => 36,
'quality' => 90,
'math' => true, //Enable Math Captcha
'expire' => 60, //Stateless/API captcha expiration
],
];
更多详情
我该如何解决有关 Mews Captcha 的问题?
In ProviderRepository.php line 208:
Class 'Mews\Captcha\CaptchaServiceProvider' not found
Mews 验证码未正确安装或配置。 请按照以下步骤操作:
作曲家要求mews/captcha
如果一切顺利,那么
在 config/app.php 中找到提供商密钥并注册验证码服务提供商。
'providers' => [
// ...
'Mews\Captcha\CaptchaServiceProvider',
]
要使用您自己的设置,请发布配置。
$ php artisan vendor:publish
config/captcha.php
return [
'default' => [
'length' => 5,
'width' => 120,
'height' => 36,
'quality' => 90,
'math' => true, //Enable Math Captcha
'expire' => 60, //Stateless/API captcha expiration
],
];
更多详情