package-template/README.md

40 lines
512 B
Markdown
Raw Permalink Normal View History

2024-07-26 18:30:00 +02:00
Composer package template
2024-07-27 01:25:48 +02:00
=========================
2024-07-26 18:30:00 +02:00
Template for composer packages with CI and a Docker image for local development.
2024-07-27 01:25:48 +02:00
Commands
--------
2024-07-27 01:36:31 +02:00
### Install dependencies
```bash
make install
```
2024-07-27 01:25:48 +02:00
### Сode style fixer
```bash
make code-style-fix
```
2024-07-26 18:30:00 +02:00
### Сode style check
```bash
make code-style-check
```
### Run analyzer
```bash
make analyze-code
```
2024-08-05 14:05:42 +02:00
### Run unit tests
2024-07-26 18:30:00 +02:00
```bash
make run-unit-tests
```
### Run full test
```bash
make full-test
2024-07-27 01:36:31 +02:00
```
### Remove all docker data
```bash
make prune
2024-07-26 18:30:00 +02:00
```