Skip to content
This repository was archived by the owner on Feb 20, 2024. It is now read-only.

Commit 7336568

Browse files
author
Sagar Chamling
committed
Migrate 5.4 to 5.5
1 parent 50557b8 commit 7336568

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

app/Console/Kernel.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ protected function schedule(Schedule $schedule)
3535
*/
3636
protected function commands()
3737
{
38+
$this->load(__DIR__.'/Commands');
39+
3840
require base_path('routes/console.php');
3941
}
4042
}

composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
"type": "project",
77
"require": {
88
"php": ">=5.6.4",
9-
"laravel/framework": "5.4.*",
9+
"laravel/framework": "5.5.*",
1010
"laravel/tinker": "~1.0"
1111
},
1212
"require-dev": {
13+
"filp/whoops": "~2.0",
1314
"fzaninotto/faker": "~1.4",
1415
"mockery/mockery": "0.9.*",
1516
"phpunit/phpunit": "~5.7"
@@ -28,6 +29,10 @@
2829
}
2930
},
3031
"scripts": {
32+
"post-autoload-dump": [
33+
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
34+
"@php artisan package:discover"
35+
],
3136
"post-root-package-install": [
3237
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
3338
],

0 commit comments

Comments
 (0)