Skip to content

Commit

Permalink
Upgrade Laravel 7 ke 8
Browse files Browse the repository at this point in the history
  • Loading branch information
galpratama committed Apr 21, 2023
1 parent c54deec commit 8455b61
Show file tree
Hide file tree
Showing 4 changed files with 1,259 additions and 401 deletions.
3 changes: 2 additions & 1 deletion app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace App\Providers;

use Illuminate\Pagination\Paginator;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
Expand All @@ -23,6 +24,6 @@ public function register()
*/
public function boot()
{
//
Paginator::useBootstrap();
}
}
19 changes: 9 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,20 @@
"php": "^7.2",
"fideloper/proxy": "^4.0",
"fruitcake/laravel-cors": "^3.0",
"guzzlehttp/guzzle": "^6.5",
"laravel/framework": "^7.0",
"guzzlehttp/guzzle": "^7.0.1",
"laravel/framework": "^8.0",
"laravel/legacy-factories": "^1.3",
"laravel/tinker": "^2.0",
"laravel/ui": "^2.0",
"laravel/ui": "^3.0 ",
"midtrans/midtrans-php": "^2.2",
"sentry/sentry-laravel": "3.3.3"
},
"require-dev": {
"facade/ignition": "^2.0",
"facade/ignition": "^2.3.6",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^4.1",
"phpunit/phpunit": "^8.5"
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.0"
},
"config": {
"optimize-autoloader": true,
Expand All @@ -43,10 +44,8 @@
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"autoload-dev": {
"psr-4": {
Expand Down
Loading

0 comments on commit 8455b61

Please sign in to comment.