Skip to content
This repository was archived by the owner on Jul 2, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ead46e0
chore: add composer/composer package
matthv Nov 18, 2021
b99cf14
feat(schema): add db utils + get type of doctrine
matthv Nov 18, 2021
bf5f1a1
chore: new listener on artisan command
matthv Nov 18, 2021
7b65cd6
chore: fix gitignore & coverage listener
matthv Nov 18, 2021
9a54126
feat(schema): add forest model inspect
matthv Nov 22, 2021
438ec97
feat(schema): set schema serialization
matthv Nov 22, 2021
ad7974c
feat(routes): add new main route forest
matthv Nov 22, 2021
73d60c6
chore: add test on database source utils
matthv Nov 22, 2021
71c48a9
chore: add test on ApimapsController & DataTypes
matthv Nov 22, 2021
0996604
chore: test mapping relationship of model
matthv Nov 22, 2021
0148b4f
chore: fix namespace feature tests
matthv Nov 22, 2021
78cc213
refactor: forestProvider
matthv Nov 22, 2021
d867769
chore: forestmodel add getter/setter
matthv Nov 23, 2021
e7160ba
chore: fix forestModel field name
matthv Nov 24, 2021
9617bef
chore: add config migration + test on ForestModel
matthv Nov 24, 2021
6c07431
chore: schema update method scope
matthv Nov 25, 2021
1c951ff
test: add test on Schema
matthv Nov 25, 2021
a20545f
fix: typo on Provider
matthv Nov 25, 2021
3ad5a2c
chore: update tests
matthv Nov 26, 2021
eef292c
chore: add feature test on Schema
matthv Nov 26, 2021
970884e
test: refactor test schema feature
matthv Nov 26, 2021
ac743da
chore: schema fields exclude unknow type
matthv Nov 26, 2021
4c1b9c1
fix: lint ForestModelTest
matthv Nov 26, 2021
80ee731
chore: test update migrations
matthv Nov 29, 2021
1c990e8
chore: database source add exception on dialect not supported
matthv Nov 29, 2021
23d3a9d
feat: schema add ConsoleOutput on construct
matthv Nov 29, 2021
473ec56
chore: add .codeclimate.yml
matthv Nov 29, 2021
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
50 changes: 50 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
version: "2"

checks:
argument-count:
enabled: true
config:
threshold: 4
complex-logic:
enabled: true
config:
threshold: 4
file-lines:
enabled: true
config:
threshold: 250
method-complexity:
enabled: true
config:
threshold: 5
method-count:
enabled: true
config:
threshold: 20
method-lines:
enabled: true
config:
threshold: 30
nested-control-flow:
enabled: true
config:
threshold: 4
return-statements:
enabled: true
config:
threshold: 4
similar-code:
enabled: true
config:
threshold: 28
identical-code:
enabled: true
config:
threshold: 28

exclude_patterns:
- "config/"
- "node_modules/"
- "script/"
- "src/Exceptions/"
- "src/Utils/ErrorMessages.php"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ vendor
# phpunit
.phpunit.result.cache
coverage
coverage.xml
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"guzzlehttp/guzzle": "^7.4",
"league/oauth2-client": "^2.6",
"firebase/php-jwt": "^5.4",
"ext-json": "*"
"ext-json": "*",
"composer/composer": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
Expand Down
Loading