Skip to content

Commit

Permalink
Upgrade laravel version to 10.x
Browse files Browse the repository at this point in the history
  • Loading branch information
suraj-webkul committed Jun 12, 2024
1 parent d8407d4 commit 9c70678
Show file tree
Hide file tree
Showing 7 changed files with 1,233 additions and 753 deletions.
2 changes: 1 addition & 1 deletion app/Http/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Kernel extends HttpKernel
protected $middleware = [
// \App\Http\Middleware\TrustHosts::class,
\App\Http\Middleware\TrustProxies::class,
\Fruitcake\Cors\HandleCors::class,
\Illuminate\Http\Middleware\HandleCors::class,
\App\Http\Middleware\PreventRequestsDuringMaintenance::class,
\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
\App\Http\Middleware\TrimStrings::class,
Expand Down
27 changes: 13 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,30 @@
"license": "MIT",
"require": {
"php": "^8.1",
"barryvdh/laravel-dompdf": "^1.0",
"diglactic/laravel-breadcrumbs": "^7.0",
"doctrine/dbal": "^3.1",
"fruitcake/laravel-cors": "^2.0",
"barryvdh/laravel-dompdf": "^2.0.0",
"diglactic/laravel-breadcrumbs": "^8.0",
"doctrine/dbal": "^3.0",
"guzzlehttp/guzzle": "^7.0.1",
"konekt/concord": "^1.10",
"krayin/rest-api": "dev-master",
"laravel/framework": "^9.0",
"laravel/sanctum": "^2.12",
"laravel/framework": "^10.0",
"laravel/sanctum": "^3.2",
"laravel/tinker": "^2.5",
"laravel/ui": "^3.2",
"laravel/ui": "^4.0",
"maatwebsite/excel": "^3.1",
"prettus/l5-repository": "^2.7.9"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.6",
"spatie/laravel-ignition": "^1.0",
"fakerphp/faker": "^1.9.1",
"krayin/krayin-package-generator": "dev-master",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.2",
"nunomaduro/collision": "^6.1",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"phpunit/phpunit": "^9.3.3"
"nunomaduro/collision": "^7.0",
"pestphp/pest": "^2.6",
"pestphp/pest-plugin-laravel": "^2.1",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ignition": "^2.0"
},
"config": {
"optimize-autoloader": true,
Expand Down Expand Up @@ -76,7 +75,7 @@
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
Expand All @@ -90,4 +89,4 @@
"@php artisan key:generate --ansi"
]
}
}
}
Loading

0 comments on commit 9c70678

Please sign in to comment.