Skip to content

Commit c347f4b

Browse files
committed
Simplify Captcha view
1 parent 119348a commit c347f4b

9 files changed

Lines changed: 136 additions & 214 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@
88
/storage/app/public
99
/storage/*.key
1010
/vendor
11+
composer.phar
1112
/.idea
1213
/.vagrant
1314
/.vscode
15+
/phpunit.xml
1416
Homestead.json
1517
Homestead.yaml
1618
npm-debug.log

composer.json

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"type": "project",
44
"description": "Proxy panel is a proxy account management system, it supports shadowsocks, shadowsocksr, v2ray, trojan and more.",
55
"keywords": [
6-
"laravel",
7-
"proxypanel"
6+
"laravel",
7+
"proxypanel"
88
],
99
"license": "MIT",
1010
"require": {
@@ -31,7 +31,7 @@
3131
"spatie/laravel-permission": "^3.16",
3232
"srmklive/paypal": "^1.7",
3333
"xhat/payjs": "^1.4",
34-
"zbrettonye/geetest": "^1.1",
34+
"zbrettonye/geetest": "^1.2",
3535
"zbrettonye/hcaptcha": "^1.0",
3636
"zbrettonye/no-captcha": "^1.0",
3737
"zoujingli/ip2region": "^1.0"
@@ -49,46 +49,46 @@
4949
"phpunit/phpunit": "^8.5"
5050
},
5151
"config": {
52-
"optimize-autoloader": true,
53-
"preferred-install": "dist",
54-
"sort-packages": true
52+
"optimize-autoloader": true,
53+
"preferred-install": "dist",
54+
"sort-packages": true
5555
},
5656
"extra": {
57-
"laravel": {
58-
"dont-discover": [
59-
"laravel/telescope"
60-
]
61-
}
57+
"laravel": {
58+
"dont-discover": [
59+
"laravel/telescope"
60+
]
61+
}
6262
},
6363
"autoload": {
64-
"psr-4": {
65-
"App\\": "app/"
66-
},
67-
"classmap": [
68-
"database/seeds",
69-
"database/factories"
70-
],
71-
"files": [
72-
"app/helpers.php"
73-
]
64+
"psr-4": {
65+
"App\\": "app/"
66+
},
67+
"classmap": [
68+
"database/seeds",
69+
"database/factories"
70+
],
71+
"files": [
72+
"app/helpers.php"
73+
]
7474
},
7575
"autoload-dev": {
76-
"psr-4": {
77-
"Tests\\": "tests/"
78-
}
76+
"psr-4": {
77+
"Tests\\": "tests/"
78+
}
7979
},
8080
"minimum-stability": "dev",
8181
"prefer-stable": true,
8282
"scripts": {
83-
"post-autoload-dump": [
84-
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
85-
"@php artisan package:discover --ansi"
86-
],
87-
"post-root-package-install": [
88-
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
89-
],
90-
"post-create-project-cmd": [
91-
"@php artisan key:generate --ansi"
92-
]
83+
"post-autoload-dump": [
84+
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
85+
"@php artisan package:discover --ansi"
86+
],
87+
"post-root-package-install": [
88+
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
89+
],
90+
"post-create-project-cmd": [
91+
"@php artisan key:generate --ansi"
92+
]
9393
}
9494
}

0 commit comments

Comments
 (0)