Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Change Log

## 0.1.0 July 4, 2025

- Initial release
2 changes: 0 additions & 2 deletions changelog.md

This file was deleted.

1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"check-dependencies": "./vendor/bin/composer-require-checker check",
"ecs": "./vendor/bin/ecs --fix",
"mutation": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --only-covered --min-msi=100 --min-covered-msi=100",
"mutation-static": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --only-covered --min-msi=100 --min-covered-msi=100 --static-analysis-tool=phpstan",
"rector": "./vendor/bin/rector process src",
"static": "./vendor/bin/phpstan --memory-limit=512M",
"tests": "./vendor/bin/phpunit"
Expand Down
8 changes: 7 additions & 1 deletion docs/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,15 @@ Mutation testing is checked with [Infection](https://infection.github.io/). To r
composer run mutation
```

With PHPStan analysis, it will also check for static analysis issues during mutation testing.

```shell
composer run mutation-static
```

## Static analysis

The code is statically analyzed with [Phpstan](https://phpstan.org/). To run static analysis.
The code is statically analyzed with [PHPStan](https://phpstan.org/). To run static analysis.

```shell
composer run static
Expand Down
5 changes: 1 addition & 4 deletions infection.json5
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,5 @@
"directories": [
"src"
]
},
"phpStan": {
"configDir": "."
},
}
}