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

Commit 46207de

Browse files
authored
Merge pull request #12 from lucid-architecture/5.8
Upgrade to Laravel v5.8
2 parents 106b3c8 + 9b44404 commit 46207de

File tree

14 files changed

+625
-317
lines changed

14 files changed

+625
-317
lines changed

.env.example

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ MAIL_USERNAME=null
2929
MAIL_PASSWORD=null
3030
MAIL_ENCRYPTION=null
3131

32+
AWS_ACCESS_KEY_ID=
33+
AWS_SECRET_ACCESS_KEY=
34+
AWS_DEFAULT_REGION=
35+
AWS_BUCKET=
36+
3237
PUSHER_APP_ID=
3338
PUSHER_APP_KEY=
3439
PUSHER_APP_SECRET=

app/Http/Controllers/Auth/RegisterController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ protected function validator(array $data)
5151
return Validator::make($data, [
5252
'name' => ['required', 'string', 'max:255'],
5353
'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
54-
'password' => ['required', 'string', 'min:6', 'confirmed'],
54+
'password' => ['required', 'string', 'min:8', 'confirmed'],
5555
]);
5656
}
5757

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
"type": "project",
77
"require": {
88
"php": ">=7.1.3",
9-
"laravel/framework": "5.7.*",
10-
"lucid-arch/laravel-foundation": "5.7.*",
9+
"laravel/framework": "5.8.*",
10+
"lucid-arch/laravel-foundation": "5.8.*",
1111
"laravel/tinker": "^1.0",
1212
"fideloper/proxy": "~4.0"
1313
},
1414
"require-dev": {
1515
"fzaninotto/faker": "^1.4",
1616
"mockery/mockery": "^1.0",
17-
"nunomaduro/collision": "^2.0",
18-
"phpunit/phpunit": "~7.0",
17+
"nunomaduro/collision": "^3.0",
18+
"phpunit/phpunit": "^7.5",
1919
"symfony/css-selector": "~4.0",
2020
"symfony/dom-crawler": "~4.0",
21-
"lucid-arch/laravel-console": "5.7.*",
21+
"lucid-arch/laravel-console": "5.8.*",
2222
"beyondcode/laravel-dump-server": "^1.0",
2323
"filp/whoops": "^2.0"
2424
},

0 commit comments

Comments
 (0)