Merge branch 'develop' into 5.8-dev

This commit is contained in:
James Cole 2022-08-21 10:42:01 +02:00
commit 7cf6066afd
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80
2 changed files with 27 additions and 20 deletions

34
composer.lock generated
View File

@ -62,16 +62,16 @@
},
{
"name": "brick/math",
"version": "0.10.1",
"version": "0.10.2",
"source": {
"type": "git",
"url": "https://github.com/brick/math.git",
"reference": "de846578401f4e58f911b3afeb62ced56365ed87"
"reference": "459f2781e1a08d52ee56b0b1444086e038561e3f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/brick/math/zipball/de846578401f4e58f911b3afeb62ced56365ed87",
"reference": "de846578401f4e58f911b3afeb62ced56365ed87",
"url": "https://api.github.com/repos/brick/math/zipball/459f2781e1a08d52ee56b0b1444086e038561e3f",
"reference": "459f2781e1a08d52ee56b0b1444086e038561e3f",
"shasum": ""
},
"require": {
@ -106,7 +106,7 @@
],
"support": {
"issues": "https://github.com/brick/math/issues",
"source": "https://github.com/brick/math/tree/0.10.1"
"source": "https://github.com/brick/math/tree/0.10.2"
},
"funding": [
{
@ -114,7 +114,7 @@
"type": "github"
}
],
"time": "2022-08-01T22:54:31+00:00"
"time": "2022-08-10T22:54:19+00:00"
},
{
"name": "dasprid/enum",
@ -1847,16 +1847,16 @@
},
{
"name": "laravel/framework",
"version": "v9.23.0",
"version": "v9.24.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
"reference": "c4eea9060d847b5c93957b203caa8f57544a76ab"
"reference": "053840f579cf01d353d81333802afced79b1c0af"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/c4eea9060d847b5c93957b203caa8f57544a76ab",
"reference": "c4eea9060d847b5c93957b203caa8f57544a76ab",
"url": "https://api.github.com/repos/laravel/framework/zipball/053840f579cf01d353d81333802afced79b1c0af",
"reference": "053840f579cf01d353d81333802afced79b1c0af",
"shasum": ""
},
"require": {
@ -2023,7 +2023,7 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"time": "2022-08-02T14:24:44+00:00"
"time": "2022-08-09T13:43:22+00:00"
},
{
"name": "laravel/passport",
@ -2822,16 +2822,16 @@
},
{
"name": "league/flysystem",
"version": "3.2.0",
"version": "3.2.1",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
"reference": "ed0ecc7f9b5c2f4a9872185846974a808a3b052a"
"reference": "81aea9e5217084c7850cd36e1587ee4aad721c6b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/ed0ecc7f9b5c2f4a9872185846974a808a3b052a",
"reference": "ed0ecc7f9b5c2f4a9872185846974a808a3b052a",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/81aea9e5217084c7850cd36e1587ee4aad721c6b",
"reference": "81aea9e5217084c7850cd36e1587ee4aad721c6b",
"shasum": ""
},
"require": {
@ -2892,7 +2892,7 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
"source": "https://github.com/thephpleague/flysystem/tree/3.2.0"
"source": "https://github.com/thephpleague/flysystem/tree/3.2.1"
},
"funding": [
{
@ -2908,7 +2908,7 @@
"type": "tidelift"
}
],
"time": "2022-07-26T07:26:36+00:00"
"time": "2022-08-14T20:48:34+00:00"
},
{
"name": "league/fractal",

View File

@ -26,6 +26,8 @@
* @author Taylor Otwell <taylor@laravel.com>
*/
use Symfony\Component\HttpFoundation\Exception\SuspiciousOperationException;
define('LARAVEL_START', microtime(true));
/*
@ -72,9 +74,14 @@ $app = require_once __DIR__ . '/../bootstrap/app.php';
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
try {
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
} catch(SuspiciousOperationException $e) {
die('Cannot handle this situation.');
}
$response->send();
$kernel->terminate($request, $response);