feat: parser now writes, added missing fields

updated docs, example, extensive use of Traits with better handling.
valid level 9 phpstan codebase.
This commit is contained in:
2024-08-18 18:23:05 +03:00
parent 8771b14d2a
commit aa6786981a
24 changed files with 406 additions and 296 deletions

View File

@@ -5,7 +5,7 @@
"license": "MIT",
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.4.5",
"guzzlehttp/guzzle": "^7.4",
"spatie/data-transfer-object": "^3.9"
},
"autoload": {
@@ -15,6 +15,13 @@
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.10",
"ivuorinen/markdowndocs": "^4.0"
"ivuorinen/markdowndocs": "^4.0",
"phpstan/phpstan": "^1.11"
},
"scripts": {
"docs": "php vendor/bin/phpdoc-md generate src > docs.md",
"lint": "php vendor/bin/phpcs --standard=PSR12 src",
"lint-fix": "php vendor/bin/phpcbf --standard=PSR12 src",
"phpstan": "php vendor/bin/phpstan analyse src --level=9"
}
}