Add fole check endpoint & Update dependencies

This commit is contained in:
2026-08-05 22:01:32 +02:00
parent 0702d445b2
commit b8f7bc48e1
10 changed files with 2378 additions and 1506 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace Tests;
use Illuminate\Contracts\Console\Kernel;
trait CreatesApplication
{
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
$app->make(Kernel::class)->bootstrap();
return $app;
}
}