diff --git a/_ide_helper.php b/_ide_helper.php index ac7bcd5b4..73edcfb76 100644 --- a/_ide_helper.php +++ b/_ide_helper.php @@ -4,7 +4,7 @@ /** * A helper file for Laravel, to provide autocomplete information to your IDE - * Generated for Laravel 9.39.0. + * Generated for Laravel 9.41.0. * * This file should not be included in your code, only analyzed by your IDE! * @@ -9213,7 +9213,7 @@ public static function flushMacros() * * @method static mixed reset(array $credentials, \Closure $callback) * @method static string sendResetLink(array $credentials, \Closure $callback = null) - * @method static \Illuminate\Contracts\Auth\CanResetPassword getUser(array $credentials) + * @method static \Illuminate\Contracts\Auth\CanResetPassword|null getUser(array $credentials) * @method static string createToken(\Illuminate\Contracts\Auth\CanResetPassword $user) * @method static void deleteToken(\Illuminate\Contracts\Auth\CanResetPassword $user) * @method static bool tokenExists(\Illuminate\Contracts\Auth\CanResetPassword $user, string $token) @@ -12109,6 +12109,20 @@ public static function missing($key) { /** @var \Illuminate\Http\Request $instance */ return $instance->missing($key); + } + /** + * Apply the callback if the request is missing the given input item key. + * + * @param string $key + * @param callable $callback + * @param callable|null $default + * @return $this|mixed + * @static + */ + public static function whenMissing($key, $callback, $default = null) + { + /** @var \Illuminate\Http\Request $instance */ + return $instance->whenMissing($key, $callback, $default); } /** * Get the keys for all of the input and files. @@ -17253,6 +17267,18 @@ public static function withEntryPoints($entryPoints) { /** @var \Illuminate\Foundation\Vite $instance */ return $instance->withEntryPoints($entryPoints); + } + /** + * Set the filename for the manifest file. + * + * @param string $filename + * @return \Illuminate\Foundation\Vite + * @static + */ + public static function useManifestFilename($filename) + { + /** @var \Illuminate\Foundation\Vite $instance */ + return $instance->useManifestFilename($filename); } /** * Get the Vite "hot" file path. @@ -17359,6 +17385,17 @@ public static function manifestHash($buildDirectory = null) { /** @var \Illuminate\Foundation\Vite $instance */ return $instance->manifestHash($buildDirectory); + } + /** + * Determine if the HMR server is running. + * + * @return bool + * @static + */ + public static function isRunningHot() + { + /** @var \Illuminate\Foundation\Vite $instance */ + return $instance->isRunningHot(); } /** * Get the Vite tag content as a string of HTML. @@ -19427,6 +19464,114 @@ public static function assertTableColumnStateSet($name, $value, $record) public static function assertTableColumnStateNotSet($name, $value, $record) { return \Livewire\Testing\TestableLivewire::assertTableColumnStateNotSet($name, $value, $record); + } + /** + * + * + * @see \Filament\Tables\Testing\TestsColumns::assertTableColumnFormattedStateSet() + * @param string $name + * @param mixed $value + * @param mixed $record + * @return static + * @static + */ + public static function assertTableColumnFormattedStateSet($name, $value, $record) + { + return \Livewire\Testing\TestableLivewire::assertTableColumnFormattedStateSet($name, $value, $record); + } + /** + * + * + * @see \Filament\Tables\Testing\TestsColumns::assertTableColumnFormattedStateNotSet() + * @param string $name + * @param mixed $value + * @param mixed $record + * @return static + * @static + */ + public static function assertTableColumnFormattedStateNotSet($name, $value, $record) + { + return \Livewire\Testing\TestableLivewire::assertTableColumnFormattedStateNotSet($name, $value, $record); + } + /** + * + * + * @see \Filament\Tables\Testing\TestsColumns::assertTableColumnHasExtraAttributes() + * @param string $name + * @param array $attributes + * @param mixed $record + * @static + */ + public static function assertTableColumnHasExtraAttributes($name, $attributes, $record) + { + return \Livewire\Testing\TestableLivewire::assertTableColumnHasExtraAttributes($name, $attributes, $record); + } + /** + * + * + * @see \Filament\Tables\Testing\TestsColumns::assertTableColumnDoesNotHaveExtraAttributes() + * @param string $name + * @param array $attributes + * @param mixed $record + * @static + */ + public static function assertTableColumnDoesNotHaveExtraAttributes($name, $attributes, $record) + { + return \Livewire\Testing\TestableLivewire::assertTableColumnDoesNotHaveExtraAttributes($name, $attributes, $record); + } + /** + * + * + * @see \Filament\Tables\Testing\TestsColumns::assertTableColumnHasDescription() + * @param string $name + * @param mixed $description + * @param mixed $record + * @param string $position + * @static + */ + public static function assertTableColumnHasDescription($name, $description, $record, $position = 'below') + { + return \Livewire\Testing\TestableLivewire::assertTableColumnHasDescription($name, $description, $record, $position); + } + /** + * + * + * @see \Filament\Tables\Testing\TestsColumns::assertTableColumnDoesNotHaveDescription() + * @param string $name + * @param mixed $description + * @param mixed $record + * @param string $position + * @static + */ + public static function assertTableColumnDoesNotHaveDescription($name, $description, $record, $position = 'below') + { + return \Livewire\Testing\TestableLivewire::assertTableColumnDoesNotHaveDescription($name, $description, $record, $position); + } + /** + * + * + * @see \Filament\Tables\Testing\TestsColumns::assertSelectColumnHasOptions() + * @param string $name + * @param array $options + * @param mixed $record + * @static + */ + public static function assertSelectColumnHasOptions($name, $options, $record) + { + return \Livewire\Testing\TestableLivewire::assertSelectColumnHasOptions($name, $options, $record); + } + /** + * + * + * @see \Filament\Tables\Testing\TestsColumns::assertSelectColumnDoesNotHaveOptions() + * @param string $name + * @param array $options + * @param mixed $record + * @static + */ + public static function assertSelectColumnDoesNotHaveOptions($name, $options, $record) + { + return \Livewire\Testing\TestableLivewire::assertSelectColumnDoesNotHaveOptions($name, $options, $record); } /** * diff --git a/composer.lock b/composer.lock index 46bf407c1..87a45e783 100644 --- a/composer.lock +++ b/composer.lock @@ -1149,16 +1149,16 @@ }, { "name": "filament/filament", - "version": "v2.16.45", + "version": "v2.16.52", "source": { "type": "git", "url": "https://github.com/filamentphp/admin.git", - "reference": "f79b1c32ef1b0c6901367cb6f854ad8ccdb1fb1a" + "reference": "39db7f016d5a35963c44533998557ba0508001f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/admin/zipball/f79b1c32ef1b0c6901367cb6f854ad8ccdb1fb1a", - "reference": "f79b1c32ef1b0c6901367cb6f854ad8ccdb1fb1a", + "url": "https://api.github.com/repos/filamentphp/admin/zipball/39db7f016d5a35963c44533998557ba0508001f3", + "reference": "39db7f016d5a35963c44533998557ba0508001f3", "shasum": "" }, "require": { @@ -1208,20 +1208,20 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2022-11-09T22:06:02+00:00" + "time": "2022-11-22T10:29:01+00:00" }, { "name": "filament/forms", - "version": "v2.16.45", + "version": "v2.16.52", "source": { "type": "git", "url": "https://github.com/filamentphp/forms.git", - "reference": "3ec7df2e33a9eba76a4a3845d9fb211c0762b8f2" + "reference": "9d79d2d56304c04da3210683ddebb2fd53aaed02" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/forms/zipball/3ec7df2e33a9eba76a4a3845d9fb211c0762b8f2", - "reference": "3ec7df2e33a9eba76a4a3845d9fb211c0762b8f2", + "url": "https://api.github.com/repos/filamentphp/forms/zipball/9d79d2d56304c04da3210683ddebb2fd53aaed02", + "reference": "9d79d2d56304c04da3210683ddebb2fd53aaed02", "shasum": "" }, "require": { @@ -1266,20 +1266,20 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2022-11-09T22:06:02+00:00" + "time": "2022-11-22T10:29:07+00:00" }, { "name": "filament/notifications", - "version": "v2.16.45", + "version": "v2.16.52", "source": { "type": "git", "url": "https://github.com/filamentphp/notifications.git", - "reference": "45a17e50dbffe17852811c4181309e23deb24b97" + "reference": "ad4cc6e1140649c3c2d193b6b8d7fdd7d2a6d02e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/notifications/zipball/45a17e50dbffe17852811c4181309e23deb24b97", - "reference": "45a17e50dbffe17852811c4181309e23deb24b97", + "url": "https://api.github.com/repos/filamentphp/notifications/zipball/ad4cc6e1140649c3c2d193b6b8d7fdd7d2a6d02e", + "reference": "ad4cc6e1140649c3c2d193b6b8d7fdd7d2a6d02e", "shasum": "" }, "require": { @@ -1302,6 +1302,9 @@ } }, "autoload": { + "files": [ + "src/Testing/Autoload.php" + ], "psr-4": { "Filament\\Notifications\\": "src" } @@ -1316,11 +1319,11 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2022-11-09T16:25:58+00:00" + "time": "2022-11-22T10:28:58+00:00" }, { "name": "filament/spatie-laravel-settings-plugin", - "version": "v2.16.45", + "version": "v2.16.52", "source": { "type": "git", "url": "https://github.com/filamentphp/spatie-laravel-settings-plugin.git", @@ -1367,16 +1370,16 @@ }, { "name": "filament/support", - "version": "v2.16.45", + "version": "v2.16.52", "source": { "type": "git", "url": "https://github.com/filamentphp/support.git", - "reference": "da25e4d0b630855388400c5302e4fc9a58865a7a" + "reference": "f21b589a19f4ae3c245175eccb793524891550a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/support/zipball/da25e4d0b630855388400c5302e4fc9a58865a7a", - "reference": "da25e4d0b630855388400c5302e4fc9a58865a7a", + "url": "https://api.github.com/repos/filamentphp/support/zipball/f21b589a19f4ae3c245175eccb793524891550a3", + "reference": "f21b589a19f4ae3c245175eccb793524891550a3", "shasum": "" }, "require": { @@ -1413,20 +1416,20 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2022-11-09T21:59:01+00:00" + "time": "2022-11-22T10:28:55+00:00" }, { "name": "filament/tables", - "version": "v2.16.45", + "version": "v2.16.52", "source": { "type": "git", "url": "https://github.com/filamentphp/tables.git", - "reference": "4f546c9b916c688cac4f1d905c84e10bf577f408" + "reference": "cb052310850f3de465e8fd3891fe2ba081aeef78" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/tables/zipball/4f546c9b916c688cac4f1d905c84e10bf577f408", - "reference": "4f546c9b916c688cac4f1d905c84e10bf577f408", + "url": "https://api.github.com/repos/filamentphp/tables/zipball/cb052310850f3de465e8fd3891fe2ba081aeef78", + "reference": "cb052310850f3de465e8fd3891fe2ba081aeef78", "shasum": "" }, "require": { @@ -1469,7 +1472,7 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2022-11-09T22:06:36+00:00" + "time": "2022-11-22T10:28:55+00:00" }, { "name": "fruitcake/php-cors", @@ -2058,16 +2061,16 @@ }, { "name": "laravel/framework", - "version": "v9.39.0", + "version": "v9.41.0", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "67e674709e1e7db14f304a871481f310822d68c5" + "reference": "cc902ce61b4ca08ca7449664cfab2fa96a1d1e28" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/67e674709e1e7db14f304a871481f310822d68c5", - "reference": "67e674709e1e7db14f304a871481f310822d68c5", + "url": "https://api.github.com/repos/laravel/framework/zipball/cc902ce61b4ca08ca7449664cfab2fa96a1d1e28", + "reference": "cc902ce61b4ca08ca7449664cfab2fa96a1d1e28", "shasum": "" }, "require": { @@ -2240,7 +2243,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-11-08T14:47:39+00:00" + "time": "2022-11-22T15:10:46+00:00" }, { "name": "laravel/sanctum", @@ -2369,16 +2372,16 @@ }, { "name": "laravel/tinker", - "version": "v2.7.2", + "version": "v2.7.3", "source": { "type": "git", "url": "https://github.com/laravel/tinker.git", - "reference": "dff39b661e827dae6e092412f976658df82dbac5" + "reference": "5062061b4924af3392225dd482ca7b4d85d8b8ef" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/tinker/zipball/dff39b661e827dae6e092412f976658df82dbac5", - "reference": "dff39b661e827dae6e092412f976658df82dbac5", + "url": "https://api.github.com/repos/laravel/tinker/zipball/5062061b4924af3392225dd482ca7b4d85d8b8ef", + "reference": "5062061b4924af3392225dd482ca7b4d85d8b8ef", "shasum": "" }, "require": { @@ -2431,9 +2434,9 @@ ], "support": { "issues": "https://github.com/laravel/tinker/issues", - "source": "https://github.com/laravel/tinker/tree/v2.7.2" + "source": "https://github.com/laravel/tinker/tree/v2.7.3" }, - "time": "2022-03-23T12:38:24+00:00" + "time": "2022-11-09T15:11:38+00:00" }, { "name": "league/commonmark", @@ -2625,16 +2628,16 @@ }, { "name": "league/flysystem", - "version": "3.10.2", + "version": "3.10.3", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "b9bd194b016114d6ff6765c09d40c7d427e4e3f6" + "reference": "8013fb046c6a244b2b1b75cc95d732ed6bcdeb8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/b9bd194b016114d6ff6765c09d40c7d427e4e3f6", - "reference": "b9bd194b016114d6ff6765c09d40c7d427e4e3f6", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8013fb046c6a244b2b1b75cc95d732ed6bcdeb8a", + "reference": "8013fb046c6a244b2b1b75cc95d732ed6bcdeb8a", "shasum": "" }, "require": { @@ -2696,7 +2699,7 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.10.2" + "source": "https://github.com/thephpleague/flysystem/tree/3.10.3" }, "funding": [ { @@ -2712,7 +2715,7 @@ "type": "tidelift" } ], - "time": "2022-10-25T07:01:47+00:00" + "time": "2022-11-14T10:42:43+00:00" }, { "name": "league/mime-type-detection", @@ -3187,25 +3190,25 @@ }, { "name": "nette/schema", - "version": "v1.2.2", + "version": "v1.2.3", "source": { "type": "git", "url": "https://github.com/nette/schema.git", - "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df" + "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df", - "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df", + "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", + "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", "shasum": "" }, "require": { "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", - "php": ">=7.1 <8.2" + "php": ">=7.1 <8.3" }, "require-dev": { "nette/tester": "^2.3 || ^2.4", - "phpstan/phpstan-nette": "^0.12", + "phpstan/phpstan-nette": "^1.0", "tracy/tracy": "^2.7" }, "type": "library", @@ -3243,9 +3246,9 @@ ], "support": { "issues": "https://github.com/nette/schema/issues", - "source": "https://github.com/nette/schema/tree/v1.2.2" + "source": "https://github.com/nette/schema/tree/v1.2.3" }, - "time": "2021-10-15T11:40:02+00:00" + "time": "2022-10-13T01:24:26+00:00" }, { "name": "nette/utils", @@ -3334,16 +3337,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.15.1", + "version": "v4.15.2", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900" + "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ef6c55a3f47f89d7a374e6f835197a0b5fcf900", - "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc", + "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc", "shasum": "" }, "require": { @@ -3384,9 +3387,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.1" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.2" }, - "time": "2022-09-04T07:30:47+00:00" + "time": "2022-11-12T15:38:23+00:00" }, { "name": "nunomaduro/termwind", @@ -4586,16 +4589,16 @@ }, { "name": "spatie/laravel-package-tools", - "version": "1.13.6", + "version": "1.13.7", "source": { "type": "git", "url": "https://github.com/spatie/laravel-package-tools.git", - "reference": "c377cc7223655c2278c148c1685b8b5a78af5c65" + "reference": "4af8e608184471b5568af6265ebb0ca0025c131a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/c377cc7223655c2278c148c1685b8b5a78af5c65", - "reference": "c377cc7223655c2278c148c1685b8b5a78af5c65", + "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/4af8e608184471b5568af6265ebb0ca0025c131a", + "reference": "4af8e608184471b5568af6265ebb0ca0025c131a", "shasum": "" }, "require": { @@ -4605,8 +4608,9 @@ "require-dev": { "mockery/mockery": "^1.5", "orchestra/testbench": "^7.7", + "pestphp/pest": "^1.22", "phpunit/phpunit": "^9.5.24", - "spatie/test-time": "^1.3" + "spatie/pest-plugin-test-time": "^1.1" }, "type": "library", "autoload": { @@ -4633,7 +4637,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-package-tools/issues", - "source": "https://github.com/spatie/laravel-package-tools/tree/1.13.6" + "source": "https://github.com/spatie/laravel-package-tools/tree/1.13.7" }, "funding": [ { @@ -4641,7 +4645,7 @@ "type": "github" } ], - "time": "2022-10-11T06:37:42+00:00" + "time": "2022-11-15T09:10:09+00:00" }, { "name": "spatie/laravel-settings", @@ -7784,16 +7788,16 @@ }, { "name": "composer/pcre", - "version": "3.0.2", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/composer/pcre.git", - "reference": "4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb" + "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb", - "reference": "4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb", + "url": "https://api.github.com/repos/composer/pcre/zipball/4bff79ddd77851fe3cdd11616ed3f92841ba5bd2", + "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2", "shasum": "" }, "require": { @@ -7835,7 +7839,7 @@ ], "support": { "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/3.0.2" + "source": "https://github.com/composer/pcre/tree/3.1.0" }, "funding": [ { @@ -7851,7 +7855,7 @@ "type": "tidelift" } ], - "time": "2022-11-03T20:24:16+00:00" + "time": "2022-11-17T09:50:14+00:00" }, { "name": "doctrine/instantiator", @@ -8180,16 +8184,16 @@ }, { "name": "laravel/sail", - "version": "v1.16.2", + "version": "v1.16.3", "source": { "type": "git", "url": "https://github.com/laravel/sail.git", - "reference": "7d1ed5f856ec8b9708712e3fc0708fcabe114659" + "reference": "0dbee8802e17911afbe29a8506316343829b056e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sail/zipball/7d1ed5f856ec8b9708712e3fc0708fcabe114659", - "reference": "7d1ed5f856ec8b9708712e3fc0708fcabe114659", + "url": "https://api.github.com/repos/laravel/sail/zipball/0dbee8802e17911afbe29a8506316343829b056e", + "reference": "0dbee8802e17911afbe29a8506316343829b056e", "shasum": "" }, "require": { @@ -8236,7 +8240,7 @@ "issues": "https://github.com/laravel/sail/issues", "source": "https://github.com/laravel/sail" }, - "time": "2022-09-28T13:13:22+00:00" + "time": "2022-11-21T16:19:18+00:00" }, { "name": "mockery/mockery", @@ -8570,16 +8574,16 @@ }, { "name": "phpunit/php-code-coverage", - "version": "9.2.18", + "version": "9.2.19", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "12fddc491826940cf9b7e88ad9664cf51f0f6d0a" + "reference": "c77b56b63e3d2031bd8997fcec43c1925ae46559" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/12fddc491826940cf9b7e88ad9664cf51f0f6d0a", - "reference": "12fddc491826940cf9b7e88ad9664cf51f0f6d0a", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c77b56b63e3d2031bd8997fcec43c1925ae46559", + "reference": "c77b56b63e3d2031bd8997fcec43c1925ae46559", "shasum": "" }, "require": { @@ -8635,7 +8639,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.18" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.19" }, "funding": [ { @@ -8643,7 +8647,7 @@ "type": "github" } ], - "time": "2022-10-27T13:35:33+00:00" + "time": "2022-11-18T07:47:47+00:00" }, { "name": "phpunit/php-file-iterator", @@ -10016,16 +10020,16 @@ }, { "name": "spatie/flare-client-php", - "version": "1.3.0", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/spatie/flare-client-php.git", - "reference": "b1b974348750925b717fa8c8b97a0db0d1aa40ca" + "reference": "ebb9ae0509b75e02f128b39537eb9a3ef5ce18e8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/b1b974348750925b717fa8c8b97a0db0d1aa40ca", - "reference": "b1b974348750925b717fa8c8b97a0db0d1aa40ca", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/ebb9ae0509b75e02f128b39537eb9a3ef5ce18e8", + "reference": "ebb9ae0509b75e02f128b39537eb9a3ef5ce18e8", "shasum": "" }, "require": { @@ -10073,7 +10077,7 @@ ], "support": { "issues": "https://github.com/spatie/flare-client-php/issues", - "source": "https://github.com/spatie/flare-client-php/tree/1.3.0" + "source": "https://github.com/spatie/flare-client-php/tree/1.3.1" }, "funding": [ { @@ -10081,7 +10085,7 @@ "type": "github" } ], - "time": "2022-08-08T10:10:20+00:00" + "time": "2022-11-16T08:30:20+00:00" }, { "name": "spatie/ignition",