Skip to content

Commit 63c7875

Browse files
committed
Merge branch 'release/5.3.6'
2 parents eee8eed + a177c03 commit 63c7875

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1037
-739
lines changed

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ REDIS_PASSWORD=null
3131
REDIS_PORT=6379
3232

3333
MAIL_DRIVER=smtp
34-
MAIL_HOST=smtp.mailtrap.io
35-
MAIL_PORT=2525
34+
MAIL_HOST=localhost
35+
MAIL_PORT=1025
3636
MAIL_USERNAME=null
3737
MAIL_PASSWORD=null
3838
MAIL_ENCRYPTION=null

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/node_modules
22
/public/hot
33
/public/storage
4-
public/images
4+
/public/images
55
/storage/*.key
66
/vendor
77
/.idea
@@ -12,7 +12,7 @@ Homestead.yaml
1212
npm-debug.log
1313
yarn-error.log
1414
.env
15-
.env.dusk.*
15+
.env.backup
1616
.DS_Store
1717
Thumbs.db
1818
*.sublime-project

app/Http/Middleware/TrustProxies.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class TrustProxies extends Middleware
1313
/**
1414
* The trusted proxies for this application.
1515
*
16-
* @var array
16+
* @var array|string
1717
*/
1818
protected $proxies;
1919

config/cache.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@
8080
'secret' => env('AWS_SECRET_ACCESS_KEY'),
8181
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
8282
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
83+
'endpoint' => env('DYNAMODB_ENDPOINT'),
8384
],
8485
],
8586

config/database.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
use Illuminate\Support\Str;
44

55
return [
6+
67
/*
78
|--------------------------------------------------------------------------
89
| Default Database Connection Name
@@ -33,8 +34,10 @@
3334
*/
3435

3536
'connections' => [
37+
3638
'sqlite' => [
3739
'driver' => 'sqlite',
40+
'url' => env('DATABASE_URL'),
3841
'database' => env('DB_DATABASE', database_path('database.sqlite')),
3942
'prefix' => '',
4043
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
@@ -48,6 +51,7 @@
4851

4952
'mysql' => [
5053
'driver' => 'mysql',
54+
'url' => env('DATABASE_URL'),
5155
'host' => env('DB_HOST', '127.0.0.1'),
5256
'port' => env('DB_PORT', '3306'),
5357
'database' => env('DB_DATABASE', 'forge'),
@@ -67,6 +71,7 @@
6771

6872
'pgsql' => [
6973
'driver' => 'pgsql',
74+
'url' => env('DATABASE_URL'),
7075
'host' => env('DB_HOST', '127.0.0.1'),
7176
'port' => env('DB_PORT', '5432'),
7277
'database' => env('DB_DATABASE', 'forge'),
@@ -81,6 +86,7 @@
8186

8287
'sqlsrv' => [
8388
'driver' => 'sqlsrv',
89+
'url' => env('DATABASE_URL'),
8490
'host' => env('DB_HOST', 'localhost'),
8591
'port' => env('DB_PORT', '1433'),
8692
'database' => env('DB_DATABASE', 'forge'),
@@ -90,6 +96,7 @@
9096
'prefix' => '',
9197
'prefix_indexes' => true,
9298
],
99+
93100
],
94101

95102
/*
@@ -117,6 +124,7 @@
117124
*/
118125

119126
'redis' => [
127+
120128
'client' => env('REDIS_CLIENT', 'predis'),
121129

122130
'options' => [
@@ -125,17 +133,21 @@
125133
],
126134

127135
'default' => [
136+
'url' => env('REDIS_URL'),
128137
'host' => env('REDIS_HOST', '127.0.0.1'),
129138
'password' => env('REDIS_PASSWORD', null),
130139
'port' => env('REDIS_PORT', 6379),
131140
'database' => env('REDIS_DB', 0),
132141
],
133142

134143
'cache' => [
144+
'url' => env('REDIS_URL'),
135145
'host' => env('REDIS_HOST', '127.0.0.1'),
136146
'password' => env('REDIS_PASSWORD', null),
137147
'port' => env('REDIS_PORT', 6379),
138148
'database' => env('REDIS_CACHE_DB', 1),
139149
],
150+
140151
],
152+
141153
];

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,26 @@
1515
"tdd": "cross-var $npm_execpath run test -- --watch --notify"
1616
},
1717
"devDependencies": {
18-
"@coreui/coreui": "^2.1.9",
19-
"@fortawesome/fontawesome-free": "^5.8.1",
18+
"@coreui/coreui": "^2.1.12",
19+
"@fortawesome/fontawesome-free": "^5.9.0",
2020
"@vue/test-utils": "^1.0.0-beta.29",
21-
"axios": "^0.18.0",
21+
"axios": "^0.19",
2222
"babel-core": "^7.0.0-bridge.0",
23-
"babel-jest": "^24.5.0",
23+
"babel-jest": "^24.8.0",
2424
"bootstrap": "^4.3.1",
2525
"cross-env": "^5.2.0",
2626
"cross-var": "^1.1.0",
27-
"jest": "^24.5.0",
27+
"jest": "^24.8.0",
2828
"jquery": "^3.4.1",
29-
"laravel-mix": "^4.0.15",
29+
"laravel-mix": "^4.0.16",
3030
"lodash": "^4.17.11",
3131
"pace": "github:HubSpot/pace#v1.0.2",
3232
"perfect-scrollbar": "^1.4.0",
33-
"popper.js": "^1.14.7",
33+
"popper.js": "^1.15.0",
3434
"resolve-url-loader": "^2.3.2",
35-
"sass": "^1.17.3",
35+
"sass": "^1.21.0",
3636
"sass-loader": "^7.1.0",
37-
"sweetalert2": "^8.7.0",
37+
"sweetalert2": "^8.13.0",
3838
"vue": "^2.6.10",
3939
"vue-jest": "^3.0.4",
4040
"vue-template-compiler": "^2.6.10"

public/css/backend.css

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/frontend.css

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.svg

Lines changed: 71 additions & 88 deletions
Loading

0 commit comments

Comments
 (0)