Skip to content

Commit

Permalink
upgrade to laravel 10
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-kamil committed Feb 7, 2024
1 parent 46ae3fc commit e7c6f79
Show file tree
Hide file tree
Showing 3 changed files with 585 additions and 880 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
22 changes: 11 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"license": "MIT",
"require": {
"php": "^8.0.2",
"php": "^8.1",
"babenkoivan/elastic-migrations": "^1.3",
"babenkoivan/elastic-scout-driver": "^1.2",
"babenkoivan/elastic-scout-driver-plus": "^2.3",
Expand All @@ -17,17 +17,16 @@
"backpack/logmanager": "^4.0",
"backpack/pro": "1.2.8",
"doctrine/dbal": "^2.5",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^9.0",
"laravel/sanctum": "^3.0",
"laravel/framework": "^10.10",
"laravel/sanctum": "^3.3",
"laravel/scout": "^9.0",
"laravel/telescope": "^4.3",
"laravel/tinker": "^2.7",
"laravel/tinker": "^2.8",
"league/flysystem-sftp": "^3.0",
"mcamara/laravel-localization": "^1.6",
"sentry/sentry-laravel": "^3.3",
"spatie/laravel-medialibrary": "^9.4",
"spatie/laravel-medialibrary": "^11.0",
"spatie/laravel-missing-page-redirector": "^2.7",
"spatie/laravel-sluggable": "^3.5",
"spatie/laravel-tags": "^4.5",
Expand All @@ -40,17 +39,18 @@
"deployer/deployer": "^7.3",
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.0",
"laravel/sail": "^1.0.1",
"laravel/sail": "^1.18",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ignition": "^1.0"
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.1",
"spatie/laravel-ignition": "^2.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
Expand All @@ -71,7 +71,7 @@
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
Expand Down
Loading

0 comments on commit e7c6f79

Please sign in to comment.