An open API service indexing awesome lists of open source software.

https://github.com/gopibabus/explore-symfony-2

This repository is to explore Different Symfony Components.
https://github.com/gopibabus/explore-symfony-2

docs doctrine-orm php symfony symfony-file-upload symfony-forms symfony-mailer symfony-security

Last synced: 3 months ago
JSON representation

This repository is to explore Different Symfony Components.

Awesome Lists containing this project

README

          

![Symfony Concepts 2](./public/images/title.png)

### Topics Explored

* Doctrine Relationships
* Symfony Security (Authentication & Authorization)
* Symfony Forms
* Symfony Mailer(Not Swift Mailer 🙅)
* Uploading files in Symfony

### How to Set up and run the Application
```bash
# Copy Config
# Feel free to update values in .env file as needed
cp ./.env.dist ./.env

DATABASE_URL="mysql://root:root@127.0.0.1:3306/symfony_concepts_2"

# Install php dependencies
composer update

# Create Database
php bin/console doctrine:database:create

# Migrate data to database
php bin/console doctrine:migrations:migrate

# Update Database with Dummy Data
php bin/console doctrine:fixtures:load

# Serve Application
symfony server:start
```