Skip to content
This repository has been archived by the owner on Sep 12, 2022. It is now read-only.

Commit

Permalink
Updated to Laravel 5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
FaZeRs committed Sep 5, 2018
1 parent eef2a70 commit ead3e58
Show file tree
Hide file tree
Showing 9 changed files with 237 additions and 232 deletions.
1 change: 0 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ insert_final_newline = true
trim_trailing_whitespace = false

[*.{vue,js,json,html,scss,blade.php,yml}]
indent_style = space
indent_size = 2
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"php": "^7.1.3",
"bugsnag/bugsnag-laravel": "^2.14",
"fideloper/proxy": "^4.0",
"laravel/framework": "5.6.*",
"laravel/framework": "5.7.*",
"laravel/horizon": "^1.3",
"laravel/passport": "^6.0.6",
"laravel/passport": "^7.0",
"predis/predis": "^1.1"
},
"require-dev": {
Expand Down
449 changes: 228 additions & 221 deletions composer.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
|
| This value determines the "environment" your application is currently
| running in. This may determine how you prefer to configure various
| services your application utilizes. Set this in your ".env" file.
| services the application utilizes. Set this in your ".env" file.
|
*/
'env' => env('APP_ENV', 'production'),
Expand Down
2 changes: 1 addition & 1 deletion config/hashing.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
| passwords for your application. By default, the bcrypt algorithm is
| used; however, you remain free to modify this option if you wish.
|
| Supported: "bcrypt", "argon"
| Supported: "bcrypt", "argon", "argon2id"
|
*/

Expand Down
2 changes: 1 addition & 1 deletion config/queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
|
*/

'default' => env('QUEUE_DRIVER', 'sync'),
'default' => env('QUEUE_CONNECTION', 'sync'),

/*
|--------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions config/session.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
|
*/

'connection' => null,
'connection' => env('SESSION_CONNECTION', null),

/*
|--------------------------------------------------------------------------
Expand All @@ -96,7 +96,7 @@
|
*/

'store' => null,
'store' => env('SESSION_STORE', null),

/*
|--------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="MAIL_DRIVER" value="array"/>
</php>
</phpunit>
</phpunit>
1 change: 0 additions & 1 deletion resources/views/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="env" content="{{ app()->environment() }}">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">

Expand Down

0 comments on commit ead3e58

Please sign in to comment.