chore: formatting and mcp configurations

This commit is contained in:
kushal-saha 2026-05-08 07:08:11 +00:00
parent 04d7b13543
commit 145e67ee46
14 changed files with 24 additions and 13 deletions

12
.ai/mcp/mcp.json Normal file
View File

@ -0,0 +1,12 @@
{
"mcpServers": {
"laravel-boost": {
"command": "wsl.exe",
"args": [
"/usr/bin/php8.5",
"/home/krbfx/sentientgeeks_admin_sso/artisan",
"boost:mcp"
]
}
}
}

1
.gitignore vendored
View File

@ -22,3 +22,4 @@ yarn-error.log
/.nova /.nova
/.vscode /.vscode
/.zed /.zed
/storage/framework/views/*

View File

@ -1,2 +0,0 @@
*
!.gitignore

View File

@ -64,4 +64,4 @@
$response->assertRedirect(route('home')); $response->assertRedirect(route('home'));
$this->assertGuest(); $this->assertGuest();
}); });

View File

@ -69,4 +69,4 @@
expect($user->fresh()->hasVerifiedEmail())->toBeTrue(); expect($user->fresh()->hasVerifiedEmail())->toBeTrue();
Event::assertNotDispatched(Verified::class); Event::assertNotDispatched(Verified::class);
}); });

View File

@ -8,4 +8,4 @@
$response = $this->actingAs($user)->get(route('password.confirm')); $response = $this->actingAs($user)->get(route('password.confirm'));
$response->assertOk(); $response->assertOk();
}); });

View File

@ -62,4 +62,4 @@
return true; return true;
}); });
}); });

View File

@ -24,4 +24,4 @@
->assertRedirect(route('dashboard', absolute: false)); ->assertRedirect(route('dashboard', absolute: false));
$this->assertAuthenticated(); $this->assertAuthenticated();
}); });

View File

@ -25,4 +25,4 @@
'email' => $user->email, 'email' => $user->email,
'password' => 'password', 'password' => 'password',
])->assertRedirect(route('two-factor.login')); ])->assertRedirect(route('two-factor.login'));
}); });

View File

@ -13,4 +13,4 @@
$response = $this->get(route('dashboard')); $response = $this->get(route('dashboard'));
$response->assertOk(); $response->assertOk();
}); });

View File

@ -4,4 +4,4 @@
$response = $this->get(route('home')); $response = $this->get(route('home'));
$response->assertOk(); $response->assertOk();
}); });

View File

@ -73,4 +73,4 @@
$response->assertHasErrors(['password']); $response->assertHasErrors(['password']);
expect($user->fresh())->not->toBeNull(); expect($user->fresh())->not->toBeNull();
}); });

View File

@ -102,4 +102,4 @@
->call('updatePassword'); ->call('updatePassword');
$response->assertHasErrors(['current_password']); $response->assertHasErrors(['current_password']);
}); });

View File

@ -2,4 +2,4 @@
test('that true is true', function () { test('that true is true', function () {
expect(true)->toBeTrue(); expect(true)->toBeTrue();
}); });