Description
A REST api for a shop app with Symfony framework and doctrine orm and using twig as template engine.
Installation
$ composer install
$ npm i
Running the app
# development with symfony cli:
$ symfony server:start
# development with php:
$ php -S localhost:8000 -t /public
Migrations
# make new migration
$ php bin/console make:migration
# migrate last migration
$ php bin/console doctrine:migrations:migrate
Test
# tests
$ php bin/phpunit