framework
This commit is contained in:
parent
995dee1ea9
commit
aed57f3e97
8
composer.lock
generated
8
composer.lock
generated
@ -504,12 +504,12 @@
|
|||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/top-think/framework.git",
|
"url": "https://github.com/top-think/framework.git",
|
||||||
"reference": "1444cce94b40a836958380b160a5fb7bfc165daf"
|
"reference": "dbe7e9d7159d767b37c05627069289a07138e13e"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/top-think/framework/zipball/1444cce94b40a836958380b160a5fb7bfc165daf",
|
"url": "https://api.github.com/repos/top-think/framework/zipball/dbe7e9d7159d767b37c05627069289a07138e13e",
|
||||||
"reference": "1444cce94b40a836958380b160a5fb7bfc165daf",
|
"reference": "dbe7e9d7159d767b37c05627069289a07138e13e",
|
||||||
"shasum": "",
|
"shasum": "",
|
||||||
"mirrors": [
|
"mirrors": [
|
||||||
{
|
{
|
||||||
@ -564,7 +564,7 @@
|
|||||||
"orm",
|
"orm",
|
||||||
"thinkphp"
|
"thinkphp"
|
||||||
],
|
],
|
||||||
"time": "2020-01-13T05:48:05+00:00"
|
"time": "2020-01-14T12:45:58+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "topthink/think-captcha",
|
"name": "topthink/think-captcha",
|
||||||
|
8
vendor/composer/installed.json
vendored
8
vendor/composer/installed.json
vendored
@ -728,12 +728,12 @@
|
|||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/top-think/framework.git",
|
"url": "https://github.com/top-think/framework.git",
|
||||||
"reference": "1444cce94b40a836958380b160a5fb7bfc165daf"
|
"reference": "dbe7e9d7159d767b37c05627069289a07138e13e"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/top-think/framework/zipball/1444cce94b40a836958380b160a5fb7bfc165daf",
|
"url": "https://api.github.com/repos/top-think/framework/zipball/dbe7e9d7159d767b37c05627069289a07138e13e",
|
||||||
"reference": "1444cce94b40a836958380b160a5fb7bfc165daf",
|
"reference": "dbe7e9d7159d767b37c05627069289a07138e13e",
|
||||||
"shasum": "",
|
"shasum": "",
|
||||||
"mirrors": [
|
"mirrors": [
|
||||||
{
|
{
|
||||||
@ -760,7 +760,7 @@
|
|||||||
"mockery/mockery": "^1.2",
|
"mockery/mockery": "^1.2",
|
||||||
"phpunit/phpunit": "^7.0"
|
"phpunit/phpunit": "^7.0"
|
||||||
},
|
},
|
||||||
"time": "2020-01-13T05:48:05+00:00",
|
"time": "2020-01-14T12:45:58+00:00",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"installation-source": "dist",
|
"installation-source": "dist",
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
2
vendor/services.php
vendored
2
vendor/services.php
vendored
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
// This file is automatically generated at:2020-01-14 15:12:36
|
// This file is automatically generated at:2020-01-14 21:08:36
|
||||||
declare (strict_types = 1);
|
declare (strict_types = 1);
|
||||||
return array (
|
return array (
|
||||||
0 => 'think\\captcha\\CaptchaService',
|
0 => 'think\\captcha\\CaptchaService',
|
||||||
|
@ -175,7 +175,7 @@ class Handle
|
|||||||
'POST Data' => $this->app->request->post(),
|
'POST Data' => $this->app->request->post(),
|
||||||
'Files' => $this->app->request->file(),
|
'Files' => $this->app->request->file(),
|
||||||
'Cookies' => $this->app->request->cookie(),
|
'Cookies' => $this->app->request->cookie(),
|
||||||
'Session' => $this->app->session->all(),
|
'Session' => $this->app->exists('session') ? $this->app->session->all() : [],
|
||||||
'Server/Request Data' => $this->app->request->server(),
|
'Server/Request Data' => $this->app->request->server(),
|
||||||
'Environment Variables' => $this->app->request->env(),
|
'Environment Variables' => $this->app->request->env(),
|
||||||
'ThinkPHP Constants' => $this->getConst(),
|
'ThinkPHP Constants' => $this->getConst(),
|
||||||
|
Loading…
Reference in New Issue
Block a user