Skip to content
This repository was archived by the owner on Dec 11, 2020. It is now read-only.

Commit feb1e93

Browse files
authored
Merge pull request #16 from lucid-architecture/6.0
Upgrade Laravel to v6
2 parents 8f2a5aa + b76d962 commit feb1e93

15 files changed

+2507
-1139
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ root = true
1111
[*.md]
1212
trim_trailing_whitespace = false
1313

14-
[*.yml]
14+
[*.yml,yaml]
1515
indent_size = 2

app/Http/Kernel.php

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ class Kernel extends HttpKernel
7272
\Illuminate\Session\Middleware\StartSession::class,
7373
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
7474
\Framework\Http\Middleware\Authenticate::class,
75+
\Illuminate\Routing\Middleware\ThrottleRequests::class,
7576
\Illuminate\Session\Middleware\AuthenticateSession::class,
7677
\Illuminate\Routing\Middleware\SubstituteBindings::class,
7778
\Illuminate\Auth\Middleware\Authorize::class,

composer.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@
55
"license": "MIT",
66
"type": "project",
77
"require": {
8-
"php": ">=7.1.3",
9-
"laravel/framework": "5.8.*",
10-
"lucid-arch/laravel-foundation": "5.8.*",
11-
"laravel/tinker": "^1.0",
8+
"php": "^7.2",
9+
"laravel/framework": "^6.18.35",
10+
"lucid-arch/laravel-foundation": "^6.0",
11+
"laravel/helpers": "^1.1",
12+
"laravel/tinker": "^2.0",
1213
"fideloper/proxy": "~4.0"
1314
},
1415
"require-dev": {
15-
"fzaninotto/faker": "^1.4",
16+
"fzaninotto/faker": "^1.9.1",
1617
"mockery/mockery": "^1.0",
18+
"facade/ignition": "^1.4",
1719
"nunomaduro/collision": "^3.0",
18-
"phpunit/phpunit": "^7.5",
20+
"phpunit/phpunit": "^8.0",
1921
"symfony/css-selector": "~4.0",
2022
"symfony/dom-crawler": "~4.0",
21-
"lucid-arch/laravel-console": "5.8.*",
22-
"beyondcode/laravel-dump-server": "^1.0",
23-
"filp/whoops": "^2.0"
23+
"lucid-arch/laravel-console": "^6.0"
2424
},
2525
"autoload": {
2626
"classmap": [

0 commit comments

Comments
 (0)