Skip to content

Commit 851090b

Browse files
Merge pull request #2 from ACT-Training/1-install-laravel-boost
✨ 📦 integrated laravel boost
2 parents ffb8bce + 90bb959 commit 851090b

9 files changed

Lines changed: 1984 additions & 1 deletion

File tree

.cursor/mcp.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"mcpServers": {
3+
"laravel-boost": {
4+
"command": "php",
5+
"args": ["./artisan", "boost:mcp"]
6+
},
7+
"herd": {
8+
"command": "php",
9+
"args": ["/Applications/Herd.app/Contents/Resources/herd-mcp.phar"],
10+
"env": {
11+
"SITE_PATH": "/Users/simon/ACT/client"
12+
}
13+
}
14+
}
15+
}

.cursor/rules/laravel-boost.mdc

Lines changed: 566 additions & 0 deletions
Large diffs are not rendered by default.

.junie/guidelines.md

Lines changed: 588 additions & 0 deletions
Large diffs are not rendered by default.

.junie/mcp/mcp.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"mcpServers": {
3+
"laravel-boost": {
4+
"command": "/Users/simon/Library/Application Support/Herd/bin/php84",
5+
"args": ["/Users/simon/ACT/client/artisan", "boost:mcp"]
6+
},
7+
"herd": {
8+
"command": "/Users/simon/Library/Application Support/Herd/bin/php84",
9+
"args": ["/Applications/Herd.app/Contents/Resources/herd-mcp.phar"],
10+
"env": {
11+
"SITE_PATH": "/Users/simon/ACT/client"
12+
}
13+
}
14+
}
15+
}

.mcp.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"mcpServers": {
3+
"laravel-boost": {
4+
"command": "php",
5+
"args": ["./artisan", "boost:mcp"]
6+
},
7+
"herd": {
8+
"command": "php",
9+
"args": ["/Applications/Herd.app/Contents/Resources/herd-mcp.phar"],
10+
"env": {
11+
"SITE_PATH": "/Users/simon/ACT/client"
12+
}
13+
}
14+
}
15+
}

CLAUDE.md

Lines changed: 588 additions & 0 deletions
Large diffs are not rendered by default.

app/Console/Commands/ClientInstallCommand.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ public function handle(): void
6060

6161
info('SSO installed successfully.');
6262

63+
info('Installing Laravel Boost...');
64+
65+
$this->call('boost:install');
66+
67+
info('Laravel Boost installed successfully.');
6368
}
6469

6570
protected function setEnvValue(string $key, string $value): void

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
},
2121
"require-dev": {
2222
"fakerphp/faker": "^1.23",
23+
"laravel/boost": "^1.0",
2324
"laravel/pail": "^1.2.2",
2425
"laravel/pint": "^1.18",
2526
"laravel/sail": "^1.41",

composer.lock

Lines changed: 191 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)