Skip to content

A full-stack e-commerce application built with Symfony, featuring user authentication and an extensive admin panel.

Notifications You must be signed in to change notification settings

faeztgh/FullStack-Symfony-shop

Repository files navigation

Symfony Logo

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