Skip to content

Commit

Permalink
Merge pull request #24 from maximelafarie/api/forget-reset-password
Browse files Browse the repository at this point in the history
Add reset and forget password, #13, #14
  • Loading branch information
BorbagUskada committed Aug 4, 2020
2 parents fcb00c5 + 3342900 commit f475d2b
Show file tree
Hide file tree
Showing 39 changed files with 1,796 additions and 175 deletions.
9 changes: 9 additions & 0 deletions application/backend/.env
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ APP_ENV=dev
APP_SECRET=b6d83c90444fa1db81c90fdc31971350
#TRUSTED_PROXIES=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
#TRUSTED_HOSTS='^(localhost|example\.com)$'

### FRONT ROUTING ###
URL_SITE=http://humand.test
FRONT_ROUTING_FORGET_PASSWORD=/reinitialiser-mot-de-passe

###< symfony/framework-bundle ###

###> nelmio/cors-bundle ###
Expand All @@ -37,3 +42,7 @@ JWT_SECRET_KEY=%kernel.project_dir%/config/jwt/private.pem
JWT_PUBLIC_KEY=%kernel.project_dir%/config/jwt/public.pem
JWT_PASSPHRASE=dd18c9fd60555b9c0ab434ebe78bdee6
###< lexik/jwt-authentication-bundle ###

###> symfony/mailer ###
MAILER_DSN=smtp://maildev:25
###< symfony/mailer ###
8 changes: 7 additions & 1 deletion application/backend/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"doctrine/doctrine-bundle": "^1.6 || ^2.0",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/orm": "^2.4.5",
"ircmaxell/random-lib": "^1.2",
"lexik/jwt-authentication-bundle": "^2.8",
"nelmio/cors-bundle": "^1.5 || ^2.0",
"phpdocumentor/reflection-docblock": "^3.0 || ^4.0 || ^5.0",
Expand All @@ -21,10 +22,15 @@
"symfony/expression-language": "5.1.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "5.1.*",
"symfony/mailer": "5.1.*",
"symfony/security-bundle": "5.1.*",
"symfony/translation": "5.1.*",
"symfony/twig-bundle": "5.1.*",
"symfony/validator": "5.1.*",
"symfony/yaml": "5.1.*"
"symfony/yaml": "5.1.*",
"twig/cssinliner-extra": "^3.0",
"twig/extra-bundle": "^3.0",
"twig/inky-extra": "^3.0"
},
"require-dev": {
"hautelook/alice-bundle": "^2.7",
Expand Down
Loading

0 comments on commit f475d2b

Please sign in to comment.