FullStack Symfony shop
1.0.0
Un framework PHP progressif pour créer des applications côté serveur efficaces et évolutives.
Une application de boutique fullstack avec le framework Symfony et la doctrine orm + webpack encore pour gérer le côté client et utiliser twig comme moteur de modèle.
$ composer install
$ npm i
# development with symfony cli:
$ symfony server:start
# development with php:
$ php -S localhost:8000 -t /public
# running webpack
$ npm run watch
# make new migration
$ php bin/console make:migration
# migrate last migration
$ php bin/console doctrine:migrations:migrate
# tests
$ php bin/phpunit