Skip to content

Commit 07c5ce8

Browse files
Pinted the code ;)
1 parent 6dbdf2d commit 07c5ce8

24 files changed

Lines changed: 809 additions & 389 deletions

.aider.chat.history.md

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

.aider.input.history

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,15 @@
4343

4444
# 2025-07-29 11:04:40.505128
4545
+Okay, you didnt listen to what I asked of you. I want to set it so that every form that gets created will create a record with timestamps, however when that form is updated, we create a new record only if the form schema is updated. This will allow the form response to always link to the form_id without having to copy the form schema, version and such into the form response record. Please update the files to handle this, also update the config to remove any refernces to being able to change how a form is version controlled. Also implement a version control on the form so that we can see the different forms over time. Essentially when a form schema gets updated, we need to make a new record. We do not then need to store the form shcema and the form version inside the form response, just the form_id
46+
47+
# 2025-07-30 13:57:28.685710
48+
+Y
49+
50+
# 2025-07-30 13:57:38.378752
51+
+N
52+
53+
# 2025-07-30 13:58:08.680169
54+
+Y
55+
56+
# 2025-07-30 14:00:03.206428
57+
+Based on all the files provided, please update the README.md file to reflect how a user should install and work with this package

.aider.tags.cache.v4/cache.db

0 Bytes
Binary file not shown.

.github/workflows/laravel-pr.yml

Lines changed: 0 additions & 57 deletions
This file was deleted.

.github/workflows/pint.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
1-
name: Laravel Pint
1+
name: Pint
22

33
on:
4-
workflow_dispatch: # Manual only — does not run automatically
4+
push:
5+
branches:
6+
- '**'
57

68
jobs:
79
pint:
8-
name: Code Style Check with Laravel Pint
10+
name: Run Laravel Pint
911
runs-on: ubuntu-latest
1012

1113
steps:
12-
- name: Checkout repository
14+
- name: Checkout code
1315
uses: actions/checkout@v4
1416

15-
- name: Set up PHP
17+
- name: Setup PHP
1618
uses: shivammathur/setup-php@v2
1719
with:
18-
php-version: 8.2
20+
php-version: '8.2'
21+
tools: composer
1922

2023
- name: Install dependencies
21-
run: composer install --prefer-dist --no-interaction --no-progress
24+
run: composer install --no-interaction --prefer-dist --no-progress
2225

2326
- name: Run Laravel Pint
24-
run: vendor/bin/pint --test
27+
run: vendor/bin/pint

.github/workflows/push-to-main.yml

Lines changed: 0 additions & 58 deletions
This file was deleted.

0 commit comments

Comments
 (0)