Initial commit

This commit is contained in:
René Preuß
2024-06-21 19:30:19 +02:00
commit b4e617ee74
22 changed files with 9112 additions and 0 deletions

5
bootstrap/app.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
use LaravelZero\Framework\Application;
return Application::configure(basePath: dirname(__DIR__))->create();

5
bootstrap/providers.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
return [
App\Providers\AppServiceProvider::class,
];