medicalmundi/oe-module-todo-list

Todo list OpenEMR module.

Installs: 895

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 7

Type:openemr-module

pkg:composer/medicalmundi/oe-module-todo-list

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