medicalmundi/oe-module-todo-list

Todo list OpenEMR module.

v0.2.2 2024-08-23 17:41 UTC

README

CD/CI

Getting started

Development

Test

Run all test

> ./vendor/bin/phpunit

Run only unit test

> ./vendor/bin/phpunit --testsuite=unit
// shortcut
> composer tu

Static analysis tool

Check static analysis

> ./vendor/bin/psalm
// shortcut
> composer sa

Code style

Check coding style

> ./vendor/bin/ecs
// shortcut
> composer cs

Fix coding style issues

> ./vendor/bin/ecs --fix
// shortcut
> composer cs:fix