Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
629d3a9
added migration for feature test.
N3XT0R Jun 21, 2025
7b18f21
added migration for feature test, refactored DBTestCase to being able…
N3XT0R Jun 21, 2025
19a7aa6
feature branches fixed.
N3XT0R Jun 21, 2025
1b2da09
added multiple laravel migrations.
N3XT0R Jun 21, 2025
4297baf
added normalization classes.
N3XT0R Jun 21, 2025
4444edc
added normalization classes.
N3XT0R Jun 21, 2025
b9f28f7
added normalization classes.
N3XT0R Jun 21, 2025
d23f349
added normalization classes.
N3XT0R Jun 21, 2025
6ed180b
added normalization classes.
N3XT0R Jun 21, 2025
4ef27eb
added normalization classes.
N3XT0R Jun 21, 2025
d6c94f9
added normalization classes.
N3XT0R Jun 21, 2025
ef763fa
Merge branch 'dev-8.x' into feature/7-schema-normalization
N3XT0R Jun 22, 2025
a5cf0de
changed tests class.
N3XT0R Jun 22, 2025
e2a5261
added pk entity, definition and mapping.
N3XT0R Jun 22, 2025
4d1bff4
moved logic to own method: collectMappedColumns
N3XT0R Jun 22, 2025
f471811
moved logic to multiple mehtods.
N3XT0R Jun 22, 2025
2a15b0c
dump removed.
N3XT0R Jun 22, 2025
d3059b5
fixed generation of indexes.
N3XT0R Jun 22, 2025
82e7198
fixed generation of indexes.
N3XT0R Jun 22, 2025
32f47ba
fixed generation of indexes.
N3XT0R Jun 22, 2025
628227d
fixed generation of indexes.
N3XT0R Jun 22, 2025
ef1fbf8
fixed generation of indexes.
N3XT0R Jun 22, 2025
8627073
fixed generation of indexes.
N3XT0R Jun 22, 2025
7ea0eed
fixed generation of indexes.
N3XT0R Jun 22, 2025
9108876
fixed generation of indexes.
N3XT0R Jun 22, 2025
4b1de2e
fixed generation of indexes.
N3XT0R Jun 22, 2025
8e83b2e
fixed generation of indexes.
N3XT0R Jun 23, 2025
4694b7f
fixed generation of indexes.
N3XT0R Jun 23, 2025
d988eb6
fixed generation of indexes.
N3XT0R Jun 23, 2025
de1319b
fixed generation of indexes.
N3XT0R Jun 23, 2025
20010d3
fixed generation of indexes.
N3XT0R Jun 23, 2025
9a81e29
fixed generation of indexes.
N3XT0R Jun 23, 2025
28288d7
tests fixed.
N3XT0R Jun 26, 2025
ffd5019
tests fixed.
N3XT0R Jun 26, 2025
b49ad5f
added composer.lock, why the fuck it was not added.
N3XT0R Jun 26, 2025
4853228
test fixed.
N3XT0R Jun 27, 2025
06e58ef
composer updated.
N3XT0R Jun 27, 2025
6103705
test added.
N3XT0R Jun 29, 2025
a4b9c06
tests added
N3XT0R Jun 29, 2025
c9c32aa
tests added
N3XT0R Jun 29, 2025
6ec35c8
tests added
N3XT0R Jun 29, 2025
a825648
feat: replace composite primary keys in pivot tables with a single 'i…
N3XT0R Jun 29, 2025
a150b93
feat: replace composite primary keys in pivot tables with a single 'i…
N3XT0R Jun 29, 2025
939b015
feat(normalization): support enabling specific processors via manager…
N3XT0R Jun 29, 2025
7839581
feat(normalization): support enabling specific processors via manager…
N3XT0R Jun 29, 2025
640a0e9
feat(normalization): support enabling specific processors via manager…
N3XT0R Jun 29, 2025
f2bcba7
feat(normalization): support enabling specific processors via manager…
N3XT0R Jun 29, 2025
8c3369a
feat(normalization): support enabling specific processors via manager…
N3XT0R Jun 29, 2025
790d04e
added run directory.
N3XT0R Jun 29, 2025
5ac6db3
added run directory.
N3XT0R Jun 29, 2025
7e0f9ce
fixed registerCommands
N3XT0R Jun 29, 2025
05f48cd
typo fixed.
N3XT0R Jun 29, 2025
4ffd89e
bugf fixed.
N3XT0R Jun 29, 2025
536c946
bugf fixed.
N3XT0R Jun 29, 2025
13cf452
bugf fixed.
N3XT0R Jun 29, 2025
e4003fa
bugf fixed.
N3XT0R Jun 29, 2025
80676a2
bugs fixed.
N3XT0R Jun 29, 2025
aa3814f
bugs fixed.
N3XT0R Jun 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: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: CI

on:
push:
branches: [ feature-*, develop, dev-*, master ]
branches: [ feature/*, develop, dev-*, master ]
tags:
- '*'
pull_request:
branches: [ feature-*, develop, dev-*, master ]
branches: [ feature/*, develop, dev-*, master ]

jobs:
test-mysql:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
/.idea/
/.qlty/
build/
composer.lock
.phpunit.result.cache
/coverage/clover.xml
.hadolint.yaml
Expand Down
Loading