Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 565 Bytes

testing.md

File metadata and controls

27 lines (17 loc) · 565 Bytes

Testing

Checking dependencies

This package uses composer-require-checker to check if all dependencies are correctly defined in composer.json.

To run the checker, execute the following command:

composer run check-dependencies

Static analysis

The code is statically analyzed with Phpstan. To run static analysis:

composer run phpstan

Unit tests

The code is tested with PHPUnit. To run tests:

composer run test