package-template/README.md
Chicory 42a0f0c653
All checks were successful
Run code tests / Run-code-test (push) Successful in 1m1s
Readme cleanup
2024-08-05 15:05:42 +03:00

40 lines
512 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Composer package template
=========================
Template for composer packages with CI and a Docker image for local development.
Commands
--------
### Install dependencies
```bash
make install
```
### Сode style fixer
```bash
make code-style-fix
```
### Сode style check
```bash
make code-style-check
```
### Run analyzer
```bash
make analyze-code
```
### Run unit tests
```bash
make run-unit-tests
```
### Run full test
```bash
make full-test
```
### Remove all docker data
```bash
make prune
```