chore: formatting and mcp configurations
This commit is contained in:
parent
04d7b13543
commit
145e67ee46
12
.ai/mcp/mcp.json
Normal file
12
.ai/mcp/mcp.json
Normal 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
1
.gitignore
vendored
@ -22,3 +22,4 @@ yarn-error.log
|
|||||||
/.nova
|
/.nova
|
||||||
/.vscode
|
/.vscode
|
||||||
/.zed
|
/.zed
|
||||||
|
/storage/framework/views/*
|
||||||
|
|||||||
2
storage/framework/views/.gitignore
vendored
2
storage/framework/views/.gitignore
vendored
@ -1,2 +0,0 @@
|
|||||||
*
|
|
||||||
!.gitignore
|
|
||||||
@ -64,4 +64,4 @@
|
|||||||
$response->assertRedirect(route('home'));
|
$response->assertRedirect(route('home'));
|
||||||
|
|
||||||
$this->assertGuest();
|
$this->assertGuest();
|
||||||
});
|
});
|
||||||
|
|||||||
@ -69,4 +69,4 @@
|
|||||||
|
|
||||||
expect($user->fresh()->hasVerifiedEmail())->toBeTrue();
|
expect($user->fresh()->hasVerifiedEmail())->toBeTrue();
|
||||||
Event::assertNotDispatched(Verified::class);
|
Event::assertNotDispatched(Verified::class);
|
||||||
});
|
});
|
||||||
|
|||||||
@ -8,4 +8,4 @@
|
|||||||
$response = $this->actingAs($user)->get(route('password.confirm'));
|
$response = $this->actingAs($user)->get(route('password.confirm'));
|
||||||
|
|
||||||
$response->assertOk();
|
$response->assertOk();
|
||||||
});
|
});
|
||||||
|
|||||||
@ -62,4 +62,4 @@
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@ -24,4 +24,4 @@
|
|||||||
->assertRedirect(route('dashboard', absolute: false));
|
->assertRedirect(route('dashboard', absolute: false));
|
||||||
|
|
||||||
$this->assertAuthenticated();
|
$this->assertAuthenticated();
|
||||||
});
|
});
|
||||||
|
|||||||
@ -25,4 +25,4 @@
|
|||||||
'email' => $user->email,
|
'email' => $user->email,
|
||||||
'password' => 'password',
|
'password' => 'password',
|
||||||
])->assertRedirect(route('two-factor.login'));
|
])->assertRedirect(route('two-factor.login'));
|
||||||
});
|
});
|
||||||
|
|||||||
@ -13,4 +13,4 @@
|
|||||||
|
|
||||||
$response = $this->get(route('dashboard'));
|
$response = $this->get(route('dashboard'));
|
||||||
$response->assertOk();
|
$response->assertOk();
|
||||||
});
|
});
|
||||||
|
|||||||
@ -4,4 +4,4 @@
|
|||||||
$response = $this->get(route('home'));
|
$response = $this->get(route('home'));
|
||||||
|
|
||||||
$response->assertOk();
|
$response->assertOk();
|
||||||
});
|
});
|
||||||
|
|||||||
@ -73,4 +73,4 @@
|
|||||||
$response->assertHasErrors(['password']);
|
$response->assertHasErrors(['password']);
|
||||||
|
|
||||||
expect($user->fresh())->not->toBeNull();
|
expect($user->fresh())->not->toBeNull();
|
||||||
});
|
});
|
||||||
|
|||||||
@ -102,4 +102,4 @@
|
|||||||
->call('updatePassword');
|
->call('updatePassword');
|
||||||
|
|
||||||
$response->assertHasErrors(['current_password']);
|
$response->assertHasErrors(['current_password']);
|
||||||
});
|
});
|
||||||
|
|||||||
@ -2,4 +2,4 @@
|
|||||||
|
|
||||||
test('that true is true', function () {
|
test('that true is true', function () {
|
||||||
expect(true)->toBeTrue();
|
expect(true)->toBeTrue();
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user