mirror of
https://github.com/koel/koel
synced 2024-11-27 22:40:26 +00:00
chore(deps): update dependencies (#1659)
This commit is contained in:
parent
545a303e0a
commit
050d898857
5 changed files with 752 additions and 605 deletions
|
@ -19,7 +19,7 @@ class Kernel extends HttpKernel
|
|||
/**
|
||||
* The application's global HTTP middleware stack.
|
||||
*
|
||||
* @var array
|
||||
* @var array<int,class-string>
|
||||
*/
|
||||
protected $middleware = [
|
||||
CheckForMaintenanceMode::class,
|
||||
|
@ -31,7 +31,7 @@ class Kernel extends HttpKernel
|
|||
/**
|
||||
* The application's route middleware groups.
|
||||
*
|
||||
* @var array
|
||||
* @var array<string,array<int,string>>
|
||||
*/
|
||||
protected $middlewareGroups = [
|
||||
'web' => [
|
||||
|
@ -46,7 +46,7 @@ class Kernel extends HttpKernel
|
|||
/**
|
||||
* The application's route middleware.
|
||||
*
|
||||
* @var array
|
||||
* @var array<string,class-string>
|
||||
*/
|
||||
protected $routeMiddleware = [
|
||||
'auth' => Authenticate::class,
|
||||
|
|
|
@ -9,7 +9,7 @@ class EncryptCookies extends BaseEncrypter
|
|||
/**
|
||||
* The names of the cookies that should not be encrypted.
|
||||
*
|
||||
* @var array
|
||||
* @var array<int,string>
|
||||
*/
|
||||
protected $except = [
|
||||
];
|
||||
|
|
|
@ -9,7 +9,7 @@ class TrimStrings extends BaseTrimmer
|
|||
/**
|
||||
* The names of the attributes that should not be trimmed.
|
||||
*
|
||||
* @var array
|
||||
* @var array<int,string>
|
||||
*/
|
||||
protected $except = [
|
||||
'password',
|
||||
|
|
|
@ -9,7 +9,7 @@ class VerifyCsrfToken extends BaseVerifier
|
|||
/**
|
||||
* The URIs that should be excluded from CSRF verification.
|
||||
*
|
||||
* @var array
|
||||
* @var array<int,string>
|
||||
*/
|
||||
protected $except = [
|
||||
];
|
||||
|
|
1345
composer.lock
generated
1345
composer.lock
generated
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue