A progressive PHP framework for building efficient and scalable server-side applications.
Description
A fullstack shop app with Symfony framework and doctrine orm + webpack encore for handling client side 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
#running webpack
$ npm run watch
Migrations
# make new migration
$ php bin/console make:migration
# migrate last migration
$ php bin/console doctrine:migrations:migrate
Test
# tests
$ php bin/phpunit