It is a REST API project in Symfony 5 written in PHP 7.4 with 8.0 MYSQL database.
- Run
make up
in the main directory - Run database migrations
make database-migrate
- Application is available on http://localhost:8080 and database on localhost:3306
make php-cs-fixer
- command tries to fix as much coding standards problems as it canmake php-cs-fixer-dry-run
- run the fixer without making changes in filesmake phpstan
- run PHP Static Analysis Tool which focuses on finding errors in code without actually running it
make test
- run all PHPUnit tests
make database-migrate
- execute migrationsmake database-diff
- check differences between current database schema and models to create proper migrations
make cache-clear
- clear cachemake enter
- enter via bash to PHP & nginx container