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

Commit 6ba28ff

Browse files
author
Jose Fonseca
committed
- Support Laravel 8
- Docker php 7.4
1 parent b0ed4f8 commit 6ba28ff

File tree

7 files changed

+1290
-1015
lines changed

7 files changed

+1290
-1015
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM joselfonsecadt/nginx-php7.3:latest
1+
FROM joselfonsecadt/nginx-php7.4:latest
22

33
MAINTAINER Jose Fonseca <[email protected]>
44

app/Console/Commands/ResetDemoApp.php

Lines changed: 0 additions & 51 deletions
This file was deleted.

app/Console/Kernel.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace App\Console;
44

55
use App\Console\Commands\InstallApp;
6-
use App\Console\Commands\ResetDemoApp;
76
use Illuminate\Console\Scheduling\Schedule;
87
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
98

@@ -16,13 +15,12 @@ class Kernel extends ConsoleKernel
1615
*/
1716
protected $commands = [
1817
InstallApp::class,
19-
// this is just for the demo, you can remove this on your application
20-
ResetDemoApp::class,
2118
];
2219

2320
/**
2421
* Define the application's command schedule.
2522
*
23+
* @codeCoverageIgnore
2624
* @param \Illuminate\Console\Scheduling\Schedule $schedule
2725
* @return void
2826
*/

composer.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,25 @@
1313
}
1414
],
1515
"require": {
16-
"php": "^7.2.5",
17-
"dingo/api": "^3.0",
16+
"php": "^7.3",
17+
"dingo/api": "^3.0.2-rc1",
1818
"fideloper/proxy": "^4.2",
19+
"fruitcake/laravel-cors": "^2.0",
20+
"guzzlehttp/guzzle": "^7.0.1",
1921
"intervention/image": "^2.5",
2022
"intervention/imagecache": "^2.4",
21-
"laravel/framework": "^7.24",
22-
"laravel/passport": "^9.3",
23+
"laravel/framework": "^8.0",
24+
"laravel/passport": "^10.0",
2325
"laravel/tinker": "^2.0",
24-
"spatie/laravel-permission": "^3.16"
26+
"spatie/laravel-permission": "^3.17"
2527
},
2628
"require-dev": {
27-
"facade/ignition": "^2.0",
29+
"facade/ignition": "^2.3.6",
2830
"fzaninotto/faker": "^1.9.1",
31+
"laravel/legacy-factories": "^1.0",
2932
"mockery/mockery": "^1.3.1",
30-
"nunomaduro/collision": "^4.1",
31-
"phpunit/phpunit": "^8.5"
33+
"nunomaduro/collision": "^5.0",
34+
"phpunit/phpunit": "^9.3"
3235
},
3336
"config": {
3437
"optimize-autoloader": true,

0 commit comments

Comments
 (0)