Fix env files.

This commit is contained in:
James Cole
2020-08-03 06:35:06 +02:00
parent 2a3651013c
commit 4623ff9955
3 changed files with 202 additions and 50 deletions

View File

@@ -88,9 +88,18 @@ SESSION_DRIVER=array
# If you set either of these to 'redis', you might want to update these settings too
# If you use Docker or similar, you can set REDIS_HOST_FILE, REDIS_PASSWORD_FILE or
# REDIS_PORT_FILE to set the value from a file instead of from an environment variable
# can be tcp, unix or http
REDIS_SCHEME=tcp
# use only when using 'unix' for REDIS_SCHEME. Leave empty otherwise.
REDIS_PATH=
# use only when using 'tcp' or 'http' for REDIS_SCHEME. Leave empty otherwise.
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
REDIS_PASSWORD=null
# always use quotes and make sure redis db "0" and "1" exists. Otherwise change accordingly.
REDIS_DB="0"
REDIS_CACHE_DB="1"

View File

@@ -1,9 +1,8 @@
parameters:
indentation: tab
indentation: spaces
file_extensions:
- php
- phpt
exclude_files:
- fixtures/*