Skip to content

Commit 6111bc0

Browse files
committed
Set new ENV variables
1 parent 8c86dc3 commit 6111bc0

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

.env.example

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
APP_ENV=production
22
APP_DEBUG=false
33
APP_URL=http://localhost
4+
5+
APP_LOCALE=en
6+
APP_FALLBACK_LOCALE=en
7+
APP_FAKER_LOCALE=en_US
8+
9+
APP_MAINTENANCE_DRIVER=file
10+
APP_MAINTENANCE_STORE=database
11+
12+
BCRYPT_ROUNDS=12
413
APP_TIMEZONE=UTC
514
APP_KEY=
615
DEBUGBAR_ENABLED=false
@@ -14,7 +23,7 @@ DB_PASSWORD=secret
1423
DB_PORT=null
1524
DB_PREFIX=null
1625

17-
CACHE_DRIVER=file
26+
CACHE_STORE=file
1827
SESSION_DRIVER=file
1928
QUEUE_DRIVER=sync
2029

@@ -42,3 +51,6 @@ NEXMO_SECRET=null
4251
NEXMO_SMS_FROM=Cachet
4352

4453
TRUSTED_PROXIES=
54+
LOG_STACK=singleSESSION_ENCRYPT=false
55+
SESSION_PATH=/
56+
SESSION_DOMAIN=null

config/database.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
'connections' => [
1717
'mysql' => [
1818
'driver' => 'mysql',
19-
'url' => env('DATABASE_URL'),
19+
'url' => env('DB_URL'),
2020
'host' => env('DB_HOST', '127.0.0.1'),
2121
'port' => env('DB_PORT', '3306'),
2222
'database' => env('DB_DATABASE', 'forge'),

phpunit.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<php>
2121
<env name="APP_ENV" value="testing"/>
2222
<env name="BCRYPT_ROUNDS" value="4"/>
23-
<env name="CACHE_DRIVER" value="array"/>
23+
<env name="CACHE_STORE" value="array"/>
2424
<!-- <env name="DB_CONNECTION" value="sqlite"/> -->
2525
<!-- <env name="DB_DATABASE" value=":memory:"/> -->
2626
<env name="MAIL_MAILER" value="array"/>

0 commit comments

Comments
 (0)