| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 | 
							- <?php
 
- return [
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Config Language
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| Here you can config your yunpian api key from yunpian provided.
 
- 	|
 
- 	| Options: ['zh-cn', 'zh-tw', 'en', 'ja', 'ko']
 
- 	|
 
- 	*/
 
- 	'lang' => 'zh-cn',
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Config Geetest Id
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| Here you can config your yunpian api key from yunpian provided.
 
- 	|
 
- 	*/
 
-     'id' => 'b46d1900d0a894591916ea94ea91bd2c',
 
-     /*
 
-     |--------------------------------------------------------------------------
 
-     | Config Geetest Key
 
-     |--------------------------------------------------------------------------
 
-     |
 
-     | Here you can config your yunpian api key from yunpian provided.
 
-     |
 
-     */
 
-     'key' => '36fc3fe98530eea08dfc6ce76e3d24c4',
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Config Geetest URL
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| Here you can config your geetest url for ajax validation.
 
- 	|
 
- 	*/
 
- 	'url' => '/geetest',
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Config Geetest Protocol
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| Here you can config your geetest url for ajax validation.
 
- 	| 
 
- 	| Options: http or https
 
- 	|
 
- 	*/
 
- 	'protocol' => 'http',
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Config Geetest Product
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| Here you can config your geetest url for ajax validation.
 
- 	| 
 
- 	| Options: float, popup, custom, bind
 
- 	|
 
- 	*/
 
- 	'product' => 'float',
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Config Client Fail Alert Text
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| Here you can config the alert text when it failed in client.
 
- 	|
 
- 	*/
 
- 	'client_fail_alert' => '请正确完成验证码操作',
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Config Server Fail Alert
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| Here you can config the alert text when it failed in server (two factor validation).
 
- 	|
 
- 	*/
 
- 	'server_fail_alert' => '验证码校验失败',
 
- ];
 
 
  |