Skip to content

Commit

Permalink
Ref #1: add User CRUD + login page
Browse files Browse the repository at this point in the history
  • Loading branch information
LucileDT committed Mar 21, 2024
1 parent dde9c18 commit 94ed9b2
Show file tree
Hide file tree
Showing 330 changed files with 6,284 additions and 953 deletions.
18 changes: 18 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

###> doctrine/doctrine-bundle ###
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
#
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
# DATABASE_URL="mysql://app:[email protected]:3306/app?serverVersion=8.0.32&charset=utf8mb4"
# DATABASE_URL="mysql://app:[email protected]:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
DATABASE_URL="postgresql://app:[email protected]:5432/app?serverVersion=16&charset=utf8"
###< doctrine/doctrine-bundle ###

###> Authentication ###
APP_SECRET=
###< Authentication ###

###> SYMFONY debug ###
APP_DEBUG=0
###< SYMFONY debug ###
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,9 @@

# Embedded web-server pid file
/.web-server-pid

# local env variables
.env.local

# PHPStorm
.idea
15 changes: 12 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,19 @@
"php": ">=8.1",
"ext-ctype": "*",
"ext-iconv": "*",
"doctrine/dbal": "^3",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^3.1",
"easycorp/easyadmin-bundle": "^4",
"symfony/console": "6.4.*",
"symfony/dotenv": "6.4.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "6.4.*",
"symfony/runtime": "6.4.*",
"symfony/security-bundle": "6.4.*",
"symfony/yaml": "6.4.*"
},
"require-dev": {
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
Expand Down Expand Up @@ -61,7 +65,12 @@
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.4.*"
"require": "6.4.*",
"docker": false
}
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.5",
"symfony/maker-bundle": "^1.56"
}
}
Loading

0 comments on commit 94ed9b2

Please sign in to comment.