Skip to content

Commit

Permalink
Merge branch 'release/5.3.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
rappasoft committed Jun 28, 2019
2 parents eee8eed + a177c03 commit 63c7875
Show file tree
Hide file tree
Showing 54 changed files with 1,037 additions and 739 deletions.
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_HOST=localhost
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/node_modules
/public/hot
/public/storage
public/images
/public/images
/storage/*.key
/vendor
/.idea
Expand All @@ -12,7 +12,7 @@ Homestead.yaml
npm-debug.log
yarn-error.log
.env
.env.dusk.*
.env.backup
.DS_Store
Thumbs.db
*.sublime-project
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Middleware/TrustProxies.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class TrustProxies extends Middleware
/**
* The trusted proxies for this application.
*
* @var array
* @var array|string
*/
protected $proxies;

Expand Down
1 change: 1 addition & 0 deletions config/cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
'endpoint' => env('DYNAMODB_ENDPOINT'),
],
],

Expand Down
12 changes: 12 additions & 0 deletions config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
use Illuminate\Support\Str;

return [

/*
|--------------------------------------------------------------------------
| Default Database Connection Name
Expand Down Expand Up @@ -33,8 +34,10 @@
*/

'connections' => [

'sqlite' => [
'driver' => 'sqlite',
'url' => env('DATABASE_URL'),
'database' => env('DB_DATABASE', database_path('database.sqlite')),
'prefix' => '',
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
Expand All @@ -48,6 +51,7 @@

'mysql' => [
'driver' => 'mysql',
'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'forge'),
Expand All @@ -67,6 +71,7 @@

'pgsql' => [
'driver' => 'pgsql',
'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '5432'),
'database' => env('DB_DATABASE', 'forge'),
Expand All @@ -81,6 +86,7 @@

'sqlsrv' => [
'driver' => 'sqlsrv',
'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', '1433'),
'database' => env('DB_DATABASE', 'forge'),
Expand All @@ -90,6 +96,7 @@
'prefix' => '',
'prefix_indexes' => true,
],

],

/*
Expand Down Expand Up @@ -117,6 +124,7 @@
*/

'redis' => [

'client' => env('REDIS_CLIENT', 'predis'),

'options' => [
Expand All @@ -125,17 +133,21 @@
],

'default' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => env('REDIS_DB', 0),
],

'cache' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => env('REDIS_CACHE_DB', 1),
],

],

];
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@
"tdd": "cross-var $npm_execpath run test -- --watch --notify"
},
"devDependencies": {
"@coreui/coreui": "^2.1.9",
"@fortawesome/fontawesome-free": "^5.8.1",
"@coreui/coreui": "^2.1.12",
"@fortawesome/fontawesome-free": "^5.9.0",
"@vue/test-utils": "^1.0.0-beta.29",
"axios": "^0.18.0",
"axios": "^0.19",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.5.0",
"babel-jest": "^24.8.0",
"bootstrap": "^4.3.1",
"cross-env": "^5.2.0",
"cross-var": "^1.1.0",
"jest": "^24.5.0",
"jest": "^24.8.0",
"jquery": "^3.4.1",
"laravel-mix": "^4.0.15",
"laravel-mix": "^4.0.16",
"lodash": "^4.17.11",
"pace": "github:HubSpot/pace#v1.0.2",
"perfect-scrollbar": "^1.4.0",
"popper.js": "^1.14.7",
"popper.js": "^1.15.0",
"resolve-url-loader": "^2.3.2",
"sass": "^1.17.3",
"sass": "^1.21.0",
"sass-loader": "^7.1.0",
"sweetalert2": "^8.7.0",
"sweetalert2": "^8.13.0",
"vue": "^2.6.10",
"vue-jest": "^3.0.4",
"vue-template-compiler": "^2.6.10"
Expand Down
20 changes: 10 additions & 10 deletions public/css/backend.css

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions public/css/frontend.css

Large diffs are not rendered by default.

Binary file not shown.
159 changes: 71 additions & 88 deletions public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 63c7875

Please sign in to comment.