initial commit

This commit is contained in:
TheOnlyMace
2026-05-17 13:26:14 +02:00
commit 75299b723d
176 changed files with 20327 additions and 0 deletions

19
tests/TestCase.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
protected function setUp(): void
{
parent::setUp();
config([
'hosting.proxmox.token' => 'test@pam!test=secret',
'hosting.proxmox.url' => 'https://proxmox.test:8006',
'hosting.security.admin_2fa_required' => false,
]);
}
}