Skip to content

Commit af6d739

Browse files
committed
Upgraded Laravel version to 6.0
1 parent 30b815c commit af6d739

File tree

6 files changed

+1982
-1011
lines changed

6 files changed

+1982
-1011
lines changed

.env.example

+16-5
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,22 @@ APP_NAME=Laravel
22
APP_ENV=local
33
APP_KEY=
44
APP_DEBUG=true
5-
APP_LOG_LEVEL=debug
65
APP_URL=http://localhost
76

7+
LOG_CHANNEL=stack
8+
89
DB_CONNECTION=mysql
910
DB_HOST=127.0.0.1
1011
DB_PORT=3306
11-
DB_DATABASE=homestead
12-
DB_USERNAME=homestead
13-
DB_PASSWORD=secret
12+
DB_DATABASE=laravel
13+
DB_USERNAME=root
14+
DB_PASSWORD=
1415

1516
BROADCAST_DRIVER=log
1617
CACHE_DRIVER=file
18+
QUEUE_CONNECTION=sync
1719
SESSION_DRIVER=file
18-
QUEUE_DRIVER=sync
20+
SESSION_LIFETIME=120
1921

2022
REDIS_HOST=127.0.0.1
2123
REDIS_PASSWORD=null
@@ -28,6 +30,15 @@ MAIL_USERNAME=null
2830
MAIL_PASSWORD=null
2931
MAIL_ENCRYPTION=null
3032

33+
AWS_ACCESS_KEY_ID=
34+
AWS_SECRET_ACCESS_KEY=
35+
AWS_DEFAULT_REGION=us-east-1
36+
AWS_BUCKET=
37+
3138
PUSHER_APP_ID=
3239
PUSHER_APP_KEY=
3340
PUSHER_APP_SECRET=
41+
PUSHER_APP_CLUSTER=mt1
42+
43+
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
44+
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

composer.json

+11-9
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,21 @@
55
"license": "MIT",
66
"type": "project",
77
"require": {
8-
"php": ">=7.0.0",
9-
"doctrine/dbal": "^2.5",
10-
"intervention/image": "^2.3",
11-
"laravel/framework": "5.5.*",
8+
"php": "^7.2",
9+
"fideloper/proxy": "^4.0",
10+
"doctrine/dbal": "^2.9",
11+
"intervention/image": "^2.4",
12+
"laravel/framework": "^6.0",
1213
"laravel/tinker": "~1.0",
13-
"laravelcollective/html": "^5.3",
14-
"spatie/laravel-permission": "^2.2",
15-
"filp/whoops": "~2.0"
14+
"laravelcollective/html": "^6.0",
15+
"spatie/laravel-permission": "^3.0"
1616
},
1717
"require-dev": {
18+
"facade/ignition": "^1.4",
1819
"fzaninotto/faker": "~1.4",
19-
"mockery/mockery": "0.9.*",
20-
"phpunit/phpunit": "~6.0"
20+
"mockery/mockery": "^1.0",
21+
"nunomaduro/collision": "^3.0",
22+
"phpunit/phpunit": "~8.0"
2123
},
2224
"autoload": {
2325
"classmap": [

0 commit comments

Comments
 (0)