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 fixer
|
|
|
|
|
```bash
|
|
|
|
|
make code-style-fix
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Сode style check
|
|
|
|
|
```bash
|
|
|
|
|
make code-style-check
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Run analyzer
|
|
|
|
|
```bash
|
|
|
|
|
make analyze-code
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Run Run unit tests
|
|
|
|
|
```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
|
|
|
|
```
|