Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
0bfba41
refactor: switches to static what can be
JasonTheAdams Mar 8, 2025
3bed92a
test: updates tests to use static properties/methods
JasonTheAdams Mar 8, 2025
4c05c26
refactor: switch more to static
JasonTheAdams Mar 8, 2025
24ba49b
test: updates remaining tests
JasonTheAdams Mar 8, 2025
b8e8831
feat: adds native model buildings from query data
JasonTheAdams Mar 8, 2025
6541267
chore: adds additional docs
JasonTheAdams Mar 8, 2025
2c2a2d4
chore: updates docs
JasonTheAdams Apr 9, 2025
0dcc15b
chore: updates outdated flows
JasonTheAdams Apr 9, 2025
dc52d77
Merge branch 'main' into refactor/static-methods-properties
JasonTheAdams Apr 9, 2025
7ff61d8
test: updates properties in tests
JasonTheAdams Apr 9, 2025
3bdedb7
chore: fixes syntax in readme
JasonTheAdams Apr 9, 2025
90b7a08
Merge branch 'refactor/static-methods-properties' into feature/from-q…
JasonTheAdams Apr 9, 2025
235d54e
fix: fetches relationship statically
JasonTheAdams Apr 9, 2025
cff40fb
Merge branch 'refactor/static-methods-properties' into feature/from-q…
JasonTheAdams Apr 9, 2025
99769e0
refactor: cleans up ModelQueryBuilder
JasonTheAdams Apr 9, 2025
254b408
fix: corrects static syntax
JasonTheAdams Apr 10, 2025
a7c7c3b
Merge branch 'refactor/static-methods-properties' into feature/from-q…
JasonTheAdams Apr 10, 2025
676dff6
feat: improves data casting
JasonTheAdams Apr 10, 2025
8a3bc18
refactor: corrects spacing
JasonTheAdams Apr 10, 2025
cf435ab
Merge branch 'release/2.0.0' into feature/from-query-data
JasonTheAdams Apr 12, 2025
8ec57b7
refactor: changes to fromData
JasonTheAdams Apr 12, 2025
dafd8ef
feat: skips casting if value is correct type
JasonTheAdams Apr 12, 2025
90a6def
fix: corrects changed interface
JasonTheAdams Apr 12, 2025
f433793
test: tries fixing syntax error
JasonTheAdams Apr 12, 2025
b99d67f
refactor: removes sttaic return type as it is not 7.4 compat
JasonTheAdams Apr 12, 2025
29359f3
chore: bumps min PHP version to 7.4
JasonTheAdams Apr 12, 2025
b838c79
test: adds fromData model test
JasonTheAdams Apr 12, 2025
77f50f2
test: adds fromModel exception test
JasonTheAdams Apr 12, 2025
8dd2f82
test: ignores extra data
JasonTheAdams Apr 12, 2025
7be8ba8
test: ignore missing
JasonTheAdams Apr 12, 2025
64bf370
test: marks tests as skipped for now
JasonTheAdams Apr 12, 2025
01c1151
refactor: removes number type in favor of unions
JasonTheAdams Apr 12, 2025
20a6d39
feat: adds model property and definition
JasonTheAdams Apr 12, 2025
4650acf
feat: adds model property collection
JasonTheAdams Apr 12, 2025
96e29f1
feat: starts integrated collection into model
JasonTheAdams Apr 12, 2025
8c138e4
feat: properly handles restoring value to unset state
JasonTheAdams Apr 14, 2025
175675a
feat: updates Model to use new property structure
JasonTheAdams Apr 15, 2025
09d5c34
feat: adds revertChange method
JasonTheAdams Apr 15, 2025
15580dc
refactor: add and switch to map method
JasonTheAdams Apr 15, 2025
d5e3e0e
fix: makes corrections to pass Model tests
JasonTheAdams Apr 15, 2025
34b0950
chore: ignores .vscode directory
JasonTheAdams Apr 15, 2025
a5d7d62
test: stops passing anonymous class
JasonTheAdams Apr 15, 2025
e606e0f
feat: makes shorthand definitions nullable by default
JasonTheAdams Apr 15, 2025
79979ed
feat: adds ability to unset model property
JasonTheAdams Apr 15, 2025
6bfb720
test: adds PropertyDefinition tests
JasonTheAdams Apr 15, 2025
8fcf39a
test: adds property and collection tests (with fixes)
JasonTheAdams Apr 15, 2025
0c5810b
SchemaModel Introduction
dpanta94 Sep 17, 2025
a20c645
Test suite preparation
dpanta94 Sep 22, 2025
6207f19
First functional test for schema integration
dpanta94 Sep 22, 2025
e8427d2
Update .gitignore
dpanta94 Sep 22, 2025
3f7a278
Completing test coverage for schemamodel with MANY to MANY rel
dpanta94 Sep 23, 2025
070f84f
removed schema implementation from models
dpanta94 Sep 24, 2025
2357a3d
removed schema helper data
dpanta94 Sep 24, 2025
1275083
remove dev deps
dpanta94 Sep 24, 2025
2781b56
remove generated file
dpanta94 Sep 24, 2025
5c28c43
added gitkeep file
dpanta94 Sep 24, 2025
68328c8
Merge remote-tracking branch 'origin/release/2.0.0' into feat/introdu…
dpanta94 Sep 29, 2025
a6f4263
Remove duplicate methods from itnerface
dpanta94 Sep 29, 2025
cc7333b
Fix syntax..
dpanta94 Sep 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ files/
repo/
vendor/
.idea
.vscode
.vscode
tests/_support/_generated/*
!tests/_support/_generated/.gitkeep
Loading