fix: update dependencies

This commit is contained in:
Rico van Zelst
2023-11-02 11:24:59 +01:00
parent 87280627ee
commit 6904eb4ca4
2 changed files with 231 additions and 158 deletions

View File

@@ -4,7 +4,7 @@
/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 10.28.0.
* Generated for Laravel 10.30.1.
*
* This file should not be included in your code, only analyzed by your IDE!
*
@@ -435,6 +435,18 @@
{
/** @var \Illuminate\Foundation\Application $instance */
return $instance->runningInConsole();
}
/**
* Determine if the application is running any of the given console commands.
*
* @param string|array $commands
* @return bool
* @static
*/
public static function runningConsoleCommand(...$commands)
{
/** @var \Illuminate\Foundation\Application $instance */
return $instance->runningConsoleCommand(...$commands);
}
/**
* Determine if the application is running unit tests.
@@ -5548,6 +5560,18 @@
{ //Method inherited from \Illuminate\Database\Connection
/** @var \Illuminate\Database\MySqlConnection $instance */
return $instance->pretend($callback);
}
/**
* Execute the given callback without "pretending".
*
* @param \Closure $callback
* @return mixed
* @static
*/
public static function withoutPretending($callback)
{ //Method inherited from \Illuminate\Database\Connection
/** @var \Illuminate\Database\MySqlConnection $instance */
return $instance->withoutPretending($callback);
}
/**
* Bind values to their parameters in the given statement.
@@ -6475,6 +6499,18 @@
{
/** @var \Illuminate\Events\Dispatcher $instance */
return $instance->setQueueResolver($resolver);
}
/**
* Set the database transaction manager resolver implementation.
*
* @param callable $resolver
* @return \Illuminate\Events\Dispatcher
* @static
*/
public static function setTransactionManagerResolver($resolver)
{
/** @var \Illuminate\Events\Dispatcher $instance */
return $instance->setTransactionManagerResolver($resolver);
}
/**
* Gets the raw, unprepared listeners.
@@ -14482,16 +14518,16 @@
return $instance->hasTable($table);
}
/**
* Get the column listing for a given table.
* Get the columns for a given table.
*
* @param string $table
* @return array
* @static
*/
public static function getColumnListing($table)
public static function getColumns($table)
{
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->getColumnListing($table);
return $instance->getColumns($table);
}
/**
* Drop all tables from the database.
@@ -14650,13 +14686,26 @@
*
* @param string $table
* @param string $column
* @param bool $fullDefinition
* @return string
* @static
*/
public static function getColumnType($table, $column)
public static function getColumnType($table, $column, $fullDefinition = false)
{ //Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->getColumnType($table, $column);
return $instance->getColumnType($table, $column, $fullDefinition);
}
/**
* Get the column listing for a given table.
*
* @param string $table
* @return array
* @static
*/
public static function getColumnListing($table)
{ //Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->getColumnListing($table);
}
/**
* Modify a table on the schema.
@@ -14844,6 +14893,28 @@
{
/** @var \Illuminate\Session\SessionManager $instance */
return $instance->blockDriver();
}
/**
* Get the maximum number of seconds the session lock should be held for.
*
* @return int
* @static
*/
public static function defaultRouteBlockLockSeconds()
{
/** @var \Illuminate\Session\SessionManager $instance */
return $instance->defaultRouteBlockLockSeconds();
}
/**
* Get the maximum number of seconds to wait while attempting to acquire a route block session lock.
*
* @return int
* @static
*/
public static function defaultRouteBlockWaitSeconds()
{
/** @var \Illuminate\Session\SessionManager $instance */
return $instance->defaultRouteBlockWaitSeconds();
}
/**
* Get the session configuration.

306
composer.lock generated
View File

@@ -1433,16 +1433,16 @@
},
{
"name": "laravel/framework",
"version": "v10.28.0",
"version": "v10.30.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
"reference": "09137f50f715c1efc649788a26092dcb1ec4ab6e"
"reference": "7a2da50258c4d0f693b738d3f3c69b2693aea6c1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/09137f50f715c1efc649788a26092dcb1ec4ab6e",
"reference": "09137f50f715c1efc649788a26092dcb1ec4ab6e",
"url": "https://api.github.com/repos/laravel/framework/zipball/7a2da50258c4d0f693b738d3f3c69b2693aea6c1",
"reference": "7a2da50258c4d0f693b738d3f3c69b2693aea6c1",
"shasum": ""
},
"require": {
@@ -1475,7 +1475,7 @@
"symfony/console": "^6.2",
"symfony/error-handler": "^6.2",
"symfony/finder": "^6.2",
"symfony/http-foundation": "^6.2",
"symfony/http-foundation": "^6.3",
"symfony/http-kernel": "^6.2",
"symfony/mailer": "^6.2",
"symfony/mime": "^6.2",
@@ -1542,13 +1542,15 @@
"league/flysystem-read-only": "^3.3",
"league/flysystem-sftp-v3": "^3.0",
"mockery/mockery": "^1.5.1",
"nyholm/psr7": "^1.2",
"orchestra/testbench-core": "^8.12",
"pda/pheanstalk": "^4.0",
"phpstan/phpstan": "^1.4.7",
"phpunit/phpunit": "^10.0.7",
"predis/predis": "^2.0.2",
"symfony/cache": "^6.2",
"symfony/http-client": "^6.2.4"
"symfony/http-client": "^6.2.4",
"symfony/psr-http-message-bridge": "^2.0"
},
"suggest": {
"ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
@@ -1629,27 +1631,27 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"time": "2023-10-10T13:01:37+00:00"
"time": "2023-11-01T13:52:17+00:00"
},
{
"name": "laravel/prompts",
"version": "v0.1.11",
"version": "v0.1.13",
"source": {
"type": "git",
"url": "https://github.com/laravel/prompts.git",
"reference": "cce65a90e64712909ea1adc033e1d88de8455ffd"
"reference": "e1379d8ead15edd6cc4369c22274345982edc95a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/prompts/zipball/cce65a90e64712909ea1adc033e1d88de8455ffd",
"reference": "cce65a90e64712909ea1adc033e1d88de8455ffd",
"url": "https://api.github.com/repos/laravel/prompts/zipball/e1379d8ead15edd6cc4369c22274345982edc95a",
"reference": "e1379d8ead15edd6cc4369c22274345982edc95a",
"shasum": ""
},
"require": {
"ext-mbstring": "*",
"illuminate/collections": "^10.0|^11.0",
"php": "^8.1",
"symfony/console": "^6.2"
"symfony/console": "^6.2|^7.0"
},
"conflict": {
"illuminate/console": ">=10.17.0 <10.25.0",
@@ -1684,9 +1686,9 @@
],
"support": {
"issues": "https://github.com/laravel/prompts/issues",
"source": "https://github.com/laravel/prompts/tree/v0.1.11"
"source": "https://github.com/laravel/prompts/tree/v0.1.13"
},
"time": "2023-10-03T01:07:35+00:00"
"time": "2023-10-27T13:53:59+00:00"
},
{
"name": "laravel/sanctum",
@@ -1756,16 +1758,16 @@
},
{
"name": "laravel/serializable-closure",
"version": "v1.3.1",
"version": "v1.3.2",
"source": {
"type": "git",
"url": "https://github.com/laravel/serializable-closure.git",
"reference": "e5a3057a5591e1cfe8183034b0203921abe2c902"
"reference": "076fe2cf128bd54b4341cdc6d49b95b34e101e4c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/serializable-closure/zipball/e5a3057a5591e1cfe8183034b0203921abe2c902",
"reference": "e5a3057a5591e1cfe8183034b0203921abe2c902",
"url": "https://api.github.com/repos/laravel/serializable-closure/zipball/076fe2cf128bd54b4341cdc6d49b95b34e101e4c",
"reference": "076fe2cf128bd54b4341cdc6d49b95b34e101e4c",
"shasum": ""
},
"require": {
@@ -1812,7 +1814,7 @@
"issues": "https://github.com/laravel/serializable-closure/issues",
"source": "https://github.com/laravel/serializable-closure"
},
"time": "2023-07-14T13:56:28+00:00"
"time": "2023-10-17T13:38:16+00:00"
},
{
"name": "laravel/tinker",
@@ -2073,16 +2075,16 @@
},
{
"name": "league/flysystem",
"version": "3.17.0",
"version": "3.18.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
"reference": "bd4c9b26849d82364119c68429541f1631fba94b"
"reference": "015633a05aee22490495159237a5944091d8281e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/bd4c9b26849d82364119c68429541f1631fba94b",
"reference": "bd4c9b26849d82364119c68429541f1631fba94b",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/015633a05aee22490495159237a5944091d8281e",
"reference": "015633a05aee22490495159237a5944091d8281e",
"shasum": ""
},
"require": {
@@ -2111,7 +2113,7 @@
"google/cloud-storage": "^1.23",
"microsoft/azure-storage-blob": "^1.1",
"phpseclib/phpseclib": "^3.0.14",
"phpstan/phpstan": "^0.12.26",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5.11|^10.0",
"sabre/dav": "^4.3.1"
},
@@ -2147,7 +2149,7 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
"source": "https://github.com/thephpleague/flysystem/tree/3.17.0"
"source": "https://github.com/thephpleague/flysystem/tree/3.18.0"
},
"funding": [
{
@@ -2159,20 +2161,20 @@
"type": "github"
}
],
"time": "2023-10-05T20:15:05+00:00"
"time": "2023-10-20T17:59:40+00:00"
},
{
"name": "league/flysystem-local",
"version": "3.16.0",
"version": "3.18.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem-local.git",
"reference": "ec7383f25642e6fd4bb0c9554fc2311245391781"
"reference": "e7381ef7643f658b87efb7dbe98fe538fb1bbf32"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/ec7383f25642e6fd4bb0c9554fc2311245391781",
"reference": "ec7383f25642e6fd4bb0c9554fc2311245391781",
"url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e7381ef7643f658b87efb7dbe98fe538fb1bbf32",
"reference": "e7381ef7643f658b87efb7dbe98fe538fb1bbf32",
"shasum": ""
},
"require": {
@@ -2207,7 +2209,7 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem-local/issues",
"source": "https://github.com/thephpleague/flysystem-local/tree/3.16.0"
"source": "https://github.com/thephpleague/flysystem-local/tree/3.18.0"
},
"funding": [
{
@@ -2219,20 +2221,20 @@
"type": "github"
}
],
"time": "2023-08-30T10:23:59+00:00"
"time": "2023-10-19T20:07:13+00:00"
},
{
"name": "league/mime-type-detection",
"version": "1.13.0",
"version": "1.14.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/mime-type-detection.git",
"reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
"reference": "b6a5854368533df0295c5761a0253656a2e52d9e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
"reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
"url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b6a5854368533df0295c5761a0253656a2e52d9e",
"reference": "b6a5854368533df0295c5761a0253656a2e52d9e",
"shasum": ""
},
"require": {
@@ -2263,7 +2265,7 @@
"description": "Mime-type detection for Flysystem",
"support": {
"issues": "https://github.com/thephpleague/mime-type-detection/issues",
"source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
"source": "https://github.com/thephpleague/mime-type-detection/tree/1.14.0"
},
"funding": [
{
@@ -2275,20 +2277,20 @@
"type": "tidelift"
}
],
"time": "2023-08-05T12:09:49+00:00"
"time": "2023-10-17T14:13:20+00:00"
},
{
"name": "monolog/monolog",
"version": "3.4.0",
"version": "3.5.0",
"source": {
"type": "git",
"url": "https://github.com/Seldaek/monolog.git",
"reference": "e2392369686d420ca32df3803de28b5d6f76867d"
"reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/e2392369686d420ca32df3803de28b5d6f76867d",
"reference": "e2392369686d420ca32df3803de28b5d6f76867d",
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/c915e2634718dbc8a4a15c61b0e62e7a44e14448",
"reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448",
"shasum": ""
},
"require": {
@@ -2364,7 +2366,7 @@
],
"support": {
"issues": "https://github.com/Seldaek/monolog/issues",
"source": "https://github.com/Seldaek/monolog/tree/3.4.0"
"source": "https://github.com/Seldaek/monolog/tree/3.5.0"
},
"funding": [
{
@@ -2376,7 +2378,7 @@
"type": "tidelift"
}
],
"time": "2023-06-21T08:46:11+00:00"
"time": "2023-10-27T15:32:31+00:00"
},
{
"name": "nesbot/carbon",
@@ -3313,16 +3315,16 @@
},
{
"name": "psy/psysh",
"version": "v0.11.21",
"version": "v0.11.22",
"source": {
"type": "git",
"url": "https://github.com/bobthecow/psysh.git",
"reference": "bcb22101107f3bf770523b65630c9d547f60c540"
"reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/bcb22101107f3bf770523b65630c9d547f60c540",
"reference": "bcb22101107f3bf770523b65630c9d547f60c540",
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
"reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
"shasum": ""
},
"require": {
@@ -3351,7 +3353,7 @@
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "0.11.x-dev"
"dev-0.11": "0.11.x-dev"
},
"bamarni-bin": {
"bin-links": false,
@@ -3387,9 +3389,9 @@
],
"support": {
"issues": "https://github.com/bobthecow/psysh/issues",
"source": "https://github.com/bobthecow/psysh/tree/v0.11.21"
"source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
},
"time": "2023-09-17T21:15:54+00:00"
"time": "2023-10-14T21:56:36+00:00"
},
{
"name": "ralouphie/getallheaders",
@@ -3681,16 +3683,16 @@
},
{
"name": "spatie/laravel-backup",
"version": "8.3.4",
"version": "8.4.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-backup.git",
"reference": "c79ec56ddc96da769e4438bd45de6227b1be368f"
"reference": "64f4b816c61f802e9f4c831a589c9d2e21573ddd"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/spatie/laravel-backup/zipball/c79ec56ddc96da769e4438bd45de6227b1be368f",
"reference": "c79ec56ddc96da769e4438bd45de6227b1be368f",
"url": "https://api.github.com/repos/spatie/laravel-backup/zipball/64f4b816c61f802e9f4c831a589c9d2e21573ddd",
"reference": "64f4b816c61f802e9f4c831a589c9d2e21573ddd",
"shasum": ""
},
"require": {
@@ -3764,7 +3766,7 @@
],
"support": {
"issues": "https://github.com/spatie/laravel-backup/issues",
"source": "https://github.com/spatie/laravel-backup/tree/8.3.4"
"source": "https://github.com/spatie/laravel-backup/tree/8.4.0"
},
"funding": [
{
@@ -3776,7 +3778,7 @@
"type": "other"
}
],
"time": "2023-09-18T11:25:57+00:00"
"time": "2023-10-17T15:51:49+00:00"
},
{
"name": "spatie/laravel-package-tools",
@@ -3975,16 +3977,16 @@
},
{
"name": "symfony/cache",
"version": "v6.3.5",
"version": "v6.3.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/cache.git",
"reference": "6c1a3ea078c4d88ee892530945df63a87981b2da"
"reference": "84aff8d948d6292d2b5a01ac622760be44dddc72"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/cache/zipball/6c1a3ea078c4d88ee892530945df63a87981b2da",
"reference": "6c1a3ea078c4d88ee892530945df63a87981b2da",
"url": "https://api.github.com/repos/symfony/cache/zipball/84aff8d948d6292d2b5a01ac622760be44dddc72",
"reference": "84aff8d948d6292d2b5a01ac622760be44dddc72",
"shasum": ""
},
"require": {
@@ -3993,7 +3995,7 @@
"psr/log": "^1.1|^2|^3",
"symfony/cache-contracts": "^2.5|^3",
"symfony/service-contracts": "^2.5|^3",
"symfony/var-exporter": "^6.2.10"
"symfony/var-exporter": "^6.3.6"
},
"conflict": {
"doctrine/dbal": "<2.13.1",
@@ -4008,7 +4010,7 @@
},
"require-dev": {
"cache/integration-tests": "dev-master",
"doctrine/dbal": "^2.13.1|^3.0",
"doctrine/dbal": "^2.13.1|^3|^4",
"predis/predis": "^1.1|^2.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"symfony/config": "^5.4|^6.0",
@@ -4051,7 +4053,7 @@
"psr6"
],
"support": {
"source": "https://github.com/symfony/cache/tree/v6.3.5"
"source": "https://github.com/symfony/cache/tree/v6.3.6"
},
"funding": [
{
@@ -4067,7 +4069,7 @@
"type": "tidelift"
}
],
"time": "2023-09-26T15:48:55+00:00"
"time": "2023-10-17T14:44:58+00:00"
},
{
"name": "symfony/cache-contracts",
@@ -4663,16 +4665,16 @@
},
{
"name": "symfony/http-foundation",
"version": "v6.3.5",
"version": "v6.3.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
"reference": "b50f5e281d722cb0f4c296f908bacc3e2b721957"
"reference": "59d1837d5d992d16c2628cd0d6b76acf8d69b33e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/b50f5e281d722cb0f4c296f908bacc3e2b721957",
"reference": "b50f5e281d722cb0f4c296f908bacc3e2b721957",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/59d1837d5d992d16c2628cd0d6b76acf8d69b33e",
"reference": "59d1837d5d992d16c2628cd0d6b76acf8d69b33e",
"shasum": ""
},
"require": {
@@ -4682,12 +4684,12 @@
"symfony/polyfill-php83": "^1.27"
},
"conflict": {
"symfony/cache": "<6.2"
"symfony/cache": "<6.3"
},
"require-dev": {
"doctrine/dbal": "^2.13.1|^3.0",
"doctrine/dbal": "^2.13.1|^3|^4",
"predis/predis": "^1.1|^2.0",
"symfony/cache": "^5.4|^6.0",
"symfony/cache": "^6.3",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/expression-language": "^5.4|^6.0",
"symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
@@ -4720,7 +4722,7 @@
"description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/http-foundation/tree/v6.3.5"
"source": "https://github.com/symfony/http-foundation/tree/v6.3.7"
},
"funding": [
{
@@ -4736,20 +4738,20 @@
"type": "tidelift"
}
],
"time": "2023-09-04T21:33:54+00:00"
"time": "2023-10-28T23:55:27+00:00"
},
{
"name": "symfony/http-kernel",
"version": "v6.3.5",
"version": "v6.3.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
"reference": "9f991a964368bee8d883e8d57ced4fe9fff04dfc"
"reference": "6d4098095f93279d9536a0e9124439560cc764d0"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/9f991a964368bee8d883e8d57ced4fe9fff04dfc",
"reference": "9f991a964368bee8d883e8d57ced4fe9fff04dfc",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/6d4098095f93279d9536a0e9124439560cc764d0",
"reference": "6d4098095f93279d9536a0e9124439560cc764d0",
"shasum": ""
},
"require": {
@@ -4833,7 +4835,7 @@
"description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/http-kernel/tree/v6.3.5"
"source": "https://github.com/symfony/http-kernel/tree/v6.3.7"
},
"funding": [
{
@@ -4849,7 +4851,7 @@
"type": "tidelift"
}
],
"time": "2023-09-30T06:37:04+00:00"
"time": "2023-10-29T14:31:45+00:00"
},
{
"name": "symfony/mailer",
@@ -6067,16 +6069,16 @@
},
{
"name": "symfony/translation",
"version": "v6.3.3",
"version": "v6.3.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation.git",
"reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd"
"reference": "30212e7c87dcb79c83f6362b00bde0e0b1213499"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/translation/zipball/3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
"reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
"url": "https://api.github.com/repos/symfony/translation/zipball/30212e7c87dcb79c83f6362b00bde0e0b1213499",
"reference": "30212e7c87dcb79c83f6362b00bde0e0b1213499",
"shasum": ""
},
"require": {
@@ -6142,7 +6144,7 @@
"description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/translation/tree/v6.3.3"
"source": "https://github.com/symfony/translation/tree/v6.3.7"
},
"funding": [
{
@@ -6158,7 +6160,7 @@
"type": "tidelift"
}
],
"time": "2023-07-31T07:08:24+00:00"
"time": "2023-10-28T23:11:45+00:00"
},
{
"name": "symfony/translation-contracts",
@@ -6314,16 +6316,16 @@
},
{
"name": "symfony/var-dumper",
"version": "v6.3.5",
"version": "v6.3.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
"reference": "3d9999376be5fea8de47752837a3e1d1c5f69ef5"
"reference": "999ede244507c32b8e43aebaa10e9fce20de7c97"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/3d9999376be5fea8de47752837a3e1d1c5f69ef5",
"reference": "3d9999376be5fea8de47752837a3e1d1c5f69ef5",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/999ede244507c32b8e43aebaa10e9fce20de7c97",
"reference": "999ede244507c32b8e43aebaa10e9fce20de7c97",
"shasum": ""
},
"require": {
@@ -6378,7 +6380,7 @@
"dump"
],
"support": {
"source": "https://github.com/symfony/var-dumper/tree/v6.3.5"
"source": "https://github.com/symfony/var-dumper/tree/v6.3.6"
},
"funding": [
{
@@ -6394,20 +6396,20 @@
"type": "tidelift"
}
],
"time": "2023-09-12T10:11:35+00:00"
"time": "2023-10-12T18:45:56+00:00"
},
{
"name": "symfony/var-exporter",
"version": "v6.3.4",
"version": "v6.3.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-exporter.git",
"reference": "df1f8aac5751871b83d30bf3e2c355770f8f0691"
"reference": "374d289c13cb989027274c86206ddc63b16a2441"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/var-exporter/zipball/df1f8aac5751871b83d30bf3e2c355770f8f0691",
"reference": "df1f8aac5751871b83d30bf3e2c355770f8f0691",
"url": "https://api.github.com/repos/symfony/var-exporter/zipball/374d289c13cb989027274c86206ddc63b16a2441",
"reference": "374d289c13cb989027274c86206ddc63b16a2441",
"shasum": ""
},
"require": {
@@ -6452,7 +6454,7 @@
"serialize"
],
"support": {
"source": "https://github.com/symfony/var-exporter/tree/v6.3.4"
"source": "https://github.com/symfony/var-exporter/tree/v6.3.6"
},
"funding": [
{
@@ -6468,7 +6470,7 @@
"type": "tidelift"
}
],
"time": "2023-08-16T18:14:47+00:00"
"time": "2023-10-13T09:16:49+00:00"
},
{
"name": "tijsverkoyen/css-to-inline-styles",
@@ -7717,27 +7719,27 @@
},
{
"name": "laravel/sail",
"version": "v1.25.0",
"version": "v1.26.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/sail.git",
"reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a"
"reference": "c60fe037004e272efd0d81f416ed2bfc623d70b4"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/sail/zipball/e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
"reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
"url": "https://api.github.com/repos/laravel/sail/zipball/c60fe037004e272efd0d81f416ed2bfc623d70b4",
"reference": "c60fe037004e272efd0d81f416ed2bfc623d70b4",
"shasum": ""
},
"require": {
"illuminate/console": "^8.0|^9.0|^10.0",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"illuminate/support": "^8.0|^9.0|^10.0",
"illuminate/console": "^9.0|^10.0|^11.0",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"php": "^8.0",
"symfony/yaml": "^6.0"
"symfony/yaml": "^6.0|^7.0"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0|^8.0",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpstan/phpstan": "^1.10"
},
"bin": [
@@ -7778,20 +7780,20 @@
"issues": "https://github.com/laravel/sail/issues",
"source": "https://github.com/laravel/sail"
},
"time": "2023-09-11T17:37:09+00:00"
"time": "2023-10-18T13:57:15+00:00"
},
{
"name": "maximebf/debugbar",
"version": "v1.19.0",
"version": "v1.19.1",
"source": {
"type": "git",
"url": "https://github.com/maximebf/php-debugbar.git",
"reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e"
"reference": "03dd40a1826f4d585ef93ef83afa2a9874a00523"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30f65f18f7ac086255a77a079f8e0dcdd35e828e",
"reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e",
"url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/03dd40a1826f4d585ef93ef83afa2a9874a00523",
"reference": "03dd40a1826f4d585ef93ef83afa2a9874a00523",
"shasum": ""
},
"require": {
@@ -7842,9 +7844,9 @@
],
"support": {
"issues": "https://github.com/maximebf/php-debugbar/issues",
"source": "https://github.com/maximebf/php-debugbar/tree/v1.19.0"
"source": "https://github.com/maximebf/php-debugbar/tree/v1.19.1"
},
"time": "2023-09-19T19:53:10+00:00"
"time": "2023-10-12T08:10:52+00:00"
},
{
"name": "mockery/mockery",
@@ -8678,16 +8680,16 @@
},
{
"name": "phpunit/phpunit",
"version": "10.4.1",
"version": "10.4.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "62bd7af13d282deeb95650077d28ba3600ca321c"
"reference": "cacd8b9dd224efa8eb28beb69004126c7ca1a1a1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/62bd7af13d282deeb95650077d28ba3600ca321c",
"reference": "62bd7af13d282deeb95650077d28ba3600ca321c",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/cacd8b9dd224efa8eb28beb69004126c7ca1a1a1",
"reference": "cacd8b9dd224efa8eb28beb69004126c7ca1a1a1",
"shasum": ""
},
"require": {
@@ -8759,7 +8761,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
"security": "https://github.com/sebastianbergmann/phpunit/security/policy",
"source": "https://github.com/sebastianbergmann/phpunit/tree/10.4.1"
"source": "https://github.com/sebastianbergmann/phpunit/tree/10.4.2"
},
"funding": [
{
@@ -8775,7 +8777,7 @@
"type": "tidelift"
}
],
"time": "2023-10-08T05:01:11+00:00"
"time": "2023-10-26T07:21:45+00:00"
},
{
"name": "sebastian/cli-parser",
@@ -9756,35 +9758,35 @@
},
{
"name": "spatie/flare-client-php",
"version": "1.4.2",
"version": "1.4.3",
"source": {
"type": "git",
"url": "https://github.com/spatie/flare-client-php.git",
"reference": "5f2c6a7a0d2c1d90c12559dc7828fd942911a544"
"reference": "5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/spatie/flare-client-php/zipball/5f2c6a7a0d2c1d90c12559dc7828fd942911a544",
"reference": "5f2c6a7a0d2c1d90c12559dc7828fd942911a544",
"url": "https://api.github.com/repos/spatie/flare-client-php/zipball/5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec",
"reference": "5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec",
"shasum": ""
},
"require": {
"illuminate/pipeline": "^8.0|^9.0|^10.0",
"illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
"nesbot/carbon": "^2.62.1",
"php": "^8.0",
"spatie/backtrace": "^1.5.2",
"symfony/http-foundation": "^5.0|^6.0",
"symfony/mime": "^5.2|^6.0",
"symfony/process": "^5.2|^6.0",
"symfony/var-dumper": "^5.2|^6.0"
"symfony/http-foundation": "^5.2|^6.0|^7.0",
"symfony/mime": "^5.2|^6.0|^7.0",
"symfony/process": "^5.2|^6.0|^7.0",
"symfony/var-dumper": "^5.2|^6.0|^7.0"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "^0.3.0",
"pestphp/pest": "^1.20",
"dms/phpunit-arraysubset-asserts": "^0.5.0",
"pestphp/pest": "^1.20|^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"spatie/phpunit-snapshot-assertions": "^4.0"
"spatie/phpunit-snapshot-assertions": "^4.0|^5.0"
},
"type": "library",
"extra": {
@@ -9814,7 +9816,7 @@
],
"support": {
"issues": "https://github.com/spatie/flare-client-php/issues",
"source": "https://github.com/spatie/flare-client-php/tree/1.4.2"
"source": "https://github.com/spatie/flare-client-php/tree/1.4.3"
},
"funding": [
{
@@ -9822,20 +9824,20 @@
"type": "github"
}
],
"time": "2023-07-28T08:07:24+00:00"
"time": "2023-10-17T15:54:07+00:00"
},
{
"name": "spatie/ignition",
"version": "1.11.2",
"version": "1.11.3",
"source": {
"type": "git",
"url": "https://github.com/spatie/ignition.git",
"reference": "48b23411ca4bfbc75c75dfc638b6b36159c375aa"
"reference": "3d886de644ff7a5b42e4d27c1e1f67c8b5f00044"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/spatie/ignition/zipball/48b23411ca4bfbc75c75dfc638b6b36159c375aa",
"reference": "48b23411ca4bfbc75c75dfc638b6b36159c375aa",
"url": "https://api.github.com/repos/spatie/ignition/zipball/3d886de644ff7a5b42e4d27c1e1f67c8b5f00044",
"reference": "3d886de644ff7a5b42e4d27c1e1f67c8b5f00044",
"shasum": ""
},
"require": {
@@ -9844,19 +9846,19 @@
"php": "^8.0",
"spatie/backtrace": "^1.5.3",
"spatie/flare-client-php": "^1.4.0",
"symfony/console": "^5.4|^6.0",
"symfony/var-dumper": "^5.4|^6.0"
"symfony/console": "^5.4|^6.0|^7.0",
"symfony/var-dumper": "^5.4|^6.0|^7.0"
},
"require-dev": {
"illuminate/cache": "^9.52",
"illuminate/cache": "^9.52|^10.0|^11.0",
"mockery/mockery": "^1.4",
"pestphp/pest": "^1.20",
"pestphp/pest": "^1.20|^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"psr/simple-cache-implementation": "*",
"symfony/cache": "^6.0",
"symfony/process": "^5.4|^6.0",
"symfony/cache": "^5.4|^6.0|^7.0",
"symfony/process": "^5.4|^6.0|^7.0",
"vlucas/phpdotenv": "^5.5"
},
"suggest": {
@@ -9905,7 +9907,7 @@
"type": "github"
}
],
"time": "2023-09-19T15:29:52+00:00"
"time": "2023-10-18T14:09:40+00:00"
},
{
"name": "spatie/laravel-ignition",
@@ -10001,16 +10003,16 @@
},
{
"name": "symfony/yaml",
"version": "v6.3.3",
"version": "v6.3.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
"reference": "e23292e8c07c85b971b44c1c4b87af52133e2add"
"reference": "9758b6c69d179936435d0ffb577c3708d57e38a8"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/yaml/zipball/e23292e8c07c85b971b44c1c4b87af52133e2add",
"reference": "e23292e8c07c85b971b44c1c4b87af52133e2add",
"url": "https://api.github.com/repos/symfony/yaml/zipball/9758b6c69d179936435d0ffb577c3708d57e38a8",
"reference": "9758b6c69d179936435d0ffb577c3708d57e38a8",
"shasum": ""
},
"require": {
@@ -10053,7 +10055,7 @@
"description": "Loads and dumps YAML files",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/yaml/tree/v6.3.3"
"source": "https://github.com/symfony/yaml/tree/v6.3.7"
},
"funding": [
{
@@ -10069,7 +10071,7 @@
"type": "tidelift"
}
],
"time": "2023-07-31T07:08:24+00:00"
"time": "2023-10-28T23:31:00+00:00"
},
{
"name": "theseer/tokenizer",
@@ -10131,5 +10133,5 @@
"php": "^8.1"
},
"platform-dev": [],
"plugin-api-version": "2.6.0"
"plugin-api-version": "2.3.0"
}