medicalmundi/oe-module-todo-list

Todo list OpenEMR module.

v0.2.1 2024-01-13 02:05 UTC

This package is auto-updated.

Last update: 2024-05-04 20:34:14 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