Merge branch 'develop' into 5.8-dev

# Conflicts:
#	app/Exceptions/Handler.php
#	config/firefly.php
This commit is contained in:
James Cole
2022-09-07 18:35:01 +02:00
49 changed files with 1133 additions and 1207 deletions

View File

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

2
public/v1/js/app.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -16,7 +16,7 @@
*/
/*!
* jQuery JavaScript Library v3.6.0
* jQuery JavaScript Library v3.6.1
* https://jquery.com/
*
* Includes Sizzle.js
@@ -26,5 +26,5 @@
* Released under the MIT license
* https://jquery.org/license
*
* Date: 2021-03-02T17:08Z
* Date: 2022-08-26T17:52Z
*/

File diff suppressed because one or more lines are too long

View File

@@ -1,5 +1,5 @@
/*!
* Vue.js v2.7.7
* Vue.js v2.7.10
* (c) 2014-2022 Evan You
* Released under the MIT License.
*/

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long