-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Address some Symfony upgrade leftovers #71
Changes from all commits
70f4418
401d328
78e9062
a63436b
27c96bc
b6a7d19
1e989bd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,6 @@ | |
/vendor/ | ||
/web/bundles/ | ||
/.idea | ||
.env | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why remove this? Cant hurt to leave it there and prevent potential credential leaks? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We could leave it, but makes little sense if we do not eval/use them. |
||
docker-compose.override.yml | ||
/phpunit.xml.dist | ||
|
||
|
@@ -23,9 +22,6 @@ docker-compose.override.yml | |
###< phpunit/phpunit ### | ||
|
||
###> symfony/framework-bundle ### | ||
/.env.local | ||
/.env.local.php | ||
/.env.*.local | ||
/config/secrets/prod/prod.decrypt.private.php | ||
/public/bundles/ | ||
/var/ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We do not use
.env
files, but use the more traditionalparameters.yaml
way of configuring app parameters.