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.
- Host: GitHub
- URL: https://github.com/gopibabus/explore-symfony-2
- Owner: gopibabus
- License: other
- Created: 2020-12-25T23:33:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-07T10:40:52.000Z (almost 5 years ago)
- Last Synced: 2025-02-14T01:58:18.240Z (over 1 year ago)
- Topics: docs, doctrine-orm, php, symfony, symfony-file-upload, symfony-forms, symfony-mailer, symfony-security
- Language: PHP
- Homepage:
- Size: 3.04 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

### 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
```