Skip to content

Commit d308459

Browse files
committed
refactor: ♻️ Refactor Service.php to remove dynamic class aliasing for EloquentBuilder.
1 parent dca1420 commit d308459

File tree

12 files changed

+839
-26
lines changed

12 files changed

+839
-26
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Sync Developer Settings
2+
3+
on:
4+
push:
5+
branches: [main,develop,production]
6+
workflow_dispatch:
7+
8+
jobs:
9+
sync:
10+
uses: mikebronner/development-settings/.github/workflows/reusable-sync.yml@main
11+
secrets:
12+
DEVELOPER_SETTINGS_TOKEN: ${{ secrets.DEVELOPER_SETTINGS_TOKEN }}

.gitignore

Lines changed: 96 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,100 @@
1-
.idea
1+
# -----------------
2+
# Laravel Artifacts
3+
# -----------------
4+
/.phpunit.cache
25
.phpunit.result.cache
3-
/.phpunit*
4-
/build
6+
/.laravel-lsp
7+
/node_modules
8+
/public/build
9+
/public/hot
10+
/public/storage
11+
/storage/*.key
512
/vendor
13+
/.vagrant
14+
15+
# -----------------
16+
# Environment files
17+
# -----------------
18+
.env
19+
.env.backup
20+
.env.production
21+
.env.testing
22+
.env.staging
23+
24+
# -----------------
25+
# Test and Debugging Artifacts
26+
# -----------------
27+
.phpunit.result.cache
28+
npm-debug.log
29+
yarn-error.log
30+
31+
# -----------------
32+
# Homestead and Auth Configs
33+
# -----------------
34+
Homestead.json
35+
Homestead.yaml
36+
auth.json
37+
38+
# -----------------
39+
# IDE and Editor Config
40+
# -----------------
41+
/.idea
42+
.DS_Store
43+
44+
npm-debug.log
45+
yarn-error.log
46+
47+
# -----------------
48+
# Fleet Artifacts
49+
# -----------------
50+
/.fleet
51+
52+
# -----------------
53+
# Backup Files
54+
# -----------------
55+
laravel_app_backup.tar.gz
56+
57+
# -----------------
58+
# Log files
59+
# -----------------
60+
docker-compose-*
61+
62+
# -----------------
63+
# Diagnostics files
64+
# -----------------
65+
diagnostics/diagnostics.config
66+
diagnostics/diag_*
67+
docker-diagnostics/docker_diagnostics.config
68+
docker-diagnostics/diag_*
69+
.env.staging
70+
/.vapor
71+
tmplaravel*
72+
.env.test2
73+
/storage/framework/laravel-excel/*
74+
/livewire-tmp
75+
/storage/debugbar
76+
.phpstorm.meta.php
77+
_ide_helper*.php
78+
.cursorrules
79+
/vendor/laravel-ide/*
80+
/tests/database/*.sqlite-journal
681
composer.lock
82+
83+
# ignore all the ai configuration files, have laravel boost manage them and the developer choose their setup
784
.ai
8-
/tests/database/*.sqlite-journal
85+
.agentic-tools-mcp
86+
.claude
87+
.codex
88+
.cursor
89+
.gemini
90+
.github/copilot-instructions.md
91+
.github/skills
92+
.junie
93+
.mcp.json
94+
.opencode
95+
.vscode/mcp.json
96+
AGENTS.md
97+
CLAUDE.md
98+
GEMINI.md
99+
boost.json
100+
opencode.json

0 commit comments

Comments
 (0)