Skip to content

Commit

Permalink
chore(deps): update dependancies (monicahq/chandler#420)
Browse files Browse the repository at this point in the history
  • Loading branch information
djaiss authored Feb 7, 2023
1 parent 1bfe85b commit 786e244
Show file tree
Hide file tree
Showing 12 changed files with 558 additions and 596 deletions.
6 changes: 3 additions & 3 deletions app/Http/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Kernel extends HttpKernel
*
* These middleware are run during every request to your application.
*
* @var array
* @var array<int,string>
*/
protected $middleware = [
// \App\Http\Middleware\TrustHosts::class,
Expand All @@ -35,7 +35,7 @@ class Kernel extends HttpKernel
/**
* The application's route middleware groups.
*
* @var array
* @var array<string,array<int,string>>
*/
protected $middlewareGroups = [
'web' => [
Expand All @@ -62,7 +62,7 @@ class Kernel extends HttpKernel
*
* These middleware may be assigned to groups or used individually.
*
* @var array
* @var array<string,string>
*/
protected $routeMiddleware = [
'abilities' => \Laravel\Sanctum\Http\Middleware\CheckAbilities::class,
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Middleware/EncryptCookies.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class EncryptCookies extends Middleware
/**
* The names of the cookies that should not be encrypted.
*
* @var array
* @var array<int,string>
*/
protected $except = [
//
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Middleware/PreventRequestsDuringMaintenance.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class PreventRequestsDuringMaintenance extends Middleware
/**
* The URIs that should be reachable while maintenance mode is enabled.
*
* @var array
* @var array<int,string>
*/
protected $except = [
//
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Middleware/TrimStrings.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class TrimStrings extends Middleware
/**
* The names of the attributes that should not be trimmed.
*
* @var array
* @var array<int,string>
*/
protected $except = [
'current_password',
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Middleware/TrustProxies.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class TrustProxies extends Middleware
/**
* The trusted proxies for this application.
*
* @var array<string>|string|null
* @var array<int,string>|string|null
*/
protected $proxies;

Expand Down
2 changes: 1 addition & 1 deletion app/Http/Middleware/VerifyCsrfToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class VerifyCsrfToken extends Middleware
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array
* @var array<int,string>
*/
protected $except = [
'/dav',
Expand Down
24 changes: 12 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@
"php": "^8.1",
"asbiin/laravel-webauthn": "^3.2",
"fruitcake/laravel-cors": "^2.2",
"guzzlehttp/guzzle": "^7.4.5",
"guzzlehttp/guzzle": "^7.4",
"http-interop/http-factory-guzzle": "^1.2",
"inertiajs/inertia-laravel": "^0.6.3",
"inertiajs/inertia-laravel": "^0",
"knuckleswtf/scribe": "^4.2",
"laravel-notification-channels/telegram": "^3.0",
"laravel/fortify": "^1.13",
"laravel/framework": "^9.22.1",
"laravel/framework": "^9.22",
"laravel/jetstream": "^2.10",
"laravel/sanctum": "^3.1",
"laravel/scout": "^9.4.10",
"laravel/scout": "^9.4",
"laravel/socialite": "^5.5",
"laravel/telescope": "^4.9",
"laravel/tinker": "^2.7.2",
"meilisearch/meilisearch-php": "^0.26.1",
"laravel/tinker": "^2.7",
"meilisearch/meilisearch-php": "^1.0",
"monicahq/laravel-sabre": "^1.6",
"naugrim/laravel-sentry-tunnel": "^1.0",
"sentry/sentry-laravel": "^3.0",
Expand All @@ -37,20 +37,20 @@
"socialiteproviders/microsoft-azure": "^5.1",
"socialiteproviders/twitter": "^4.1",
"tightenco/ziggy": "1.5.0",
"uploadcare/uploadcare-php": "^3.2.4",
"vluzrmos/language-detector": "^2.3.3"
"uploadcare/uploadcare-php": "^3.2",
"vluzrmos/language-detector": "^2.3"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.7",
"barryvdh/laravel-ide-helper": "^2.12",
"brianium/paratest": "^6.4",
"fakerphp/faker": "^1.9.1",
"fakerphp/faker": "^1.9",
"laravel/pint": "^1.1",
"laravel/sail": "^1.14.6",
"mockery/mockery": "^1.4.4",
"laravel/sail": "^1.14",
"mockery/mockery": "^1.4",
"nunomaduro/collision": "^6.0",
"nunomaduro/larastan": "^2.0",
"phpunit/phpunit": "^9.5.10",
"phpunit/phpunit": "^9.5",
"psalm/plugin-laravel": "^2.0",
"roave/security-advisories": "dev-master",
"spatie/laravel-ignition": "^1.0"
Expand Down
Loading

0 comments on commit 786e244

Please sign in to comment.