diff --git a/README.md b/README.md index 990ce67..3e1c65b 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ php game-bot menu ## Setup for production - Create a query user on the teamspeak server, see necessary permission down below -- Whitelist the ipaddress of the bot or turn of anti-flood-protection +- Whitelist the ipaddress of the bot or turn off anti-flood-protection - Get Api keys - Apex Legends: [Tracker.gg](https://tracker.gg/developers) (optional) - League of Legends: [Riot developers](https://developer.riotgames.com/apis) (optional) @@ -194,20 +194,23 @@ docker exec -it game-bot php game-bot b_serverinstance_permission_list b_virtualserver_servergroup_permission_list b_virtualserver_client_list +b_serverquery_login b_virtualserver_notify_register b_virtualserver_notify_unregister +i_channel_subscribe_power b_virtualserver_servergroup_list b_virtualserver_channelgroup_list b_virtualserver_servergroup_create b_virtualserver_servergroup_delete i_permission_modify_power b_icon_manage -i_icon_id (Grant) -i_group_sort_id (Grant) +i_icon_id (grant) +i_group_sort_id (grant) i_max_icon_filesize b_client_ignore_antiflood i_group_modify_power i_group_member_add_power +i_client_max_channel_subscriptions ``` ## Usage diff --git a/app/Commands/Menu.php b/app/Commands/Menu.php index a48d6c8..6c6f5e9 100644 --- a/app/Commands/Menu.php +++ b/app/Commands/Menu.php @@ -34,7 +34,6 @@ class Menu extends Command /** * Execute the console command. * - * @return void * * @throws InvalidTerminalException */ diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php index 752a629..8774e6e 100644 --- a/app/Providers/AppServiceProvider.php +++ b/app/Providers/AppServiceProvider.php @@ -21,8 +21,6 @@ class AppServiceProvider extends ServiceProvider /** * Bootstrap any application services. - * - * @return void */ public function boot(): void { @@ -45,8 +43,6 @@ public function boot(): void /** * Register any application services. - * - * @return void */ public function register(): void { diff --git a/app/Services/GameServiceInterface.php b/app/Services/GameServiceInterface.php index 50d1c99..ead1cfc 100644 --- a/app/Services/GameServiceInterface.php +++ b/app/Services/GameServiceInterface.php @@ -9,18 +9,11 @@ interface GameServiceInterface { /** * Get images in specific type for the given value - * - * @param Type $type - * @param string $value - * @return string|null */ public function grabImage(Type $type, string $value): ?string; /** * Get values for given type - * - * @param Type $type - * @return array|null */ public function grabValues(Type $type): ?array; diff --git a/app/Services/Gateways/ApexLegendsGateway.php b/app/Services/Gateways/ApexLegendsGateway.php index baf248c..f2af81c 100644 --- a/app/Services/Gateways/ApexLegendsGateway.php +++ b/app/Services/Gateways/ApexLegendsGateway.php @@ -171,9 +171,7 @@ public function mapStats(GameUser $gameUser, array $stats, Collection $assignmen } /** - * @param array $stats * @param Collection $assignments - * @return Assignment|null */ protected function mapLegend(array $stats, Collection $assignments): ?Assignment { @@ -197,10 +195,7 @@ protected function mapLegend(array $stats, Collection $assignments): ?Assignment } /** - * @param array $stats * @param Collection $assignments - * @param string $queueType - * @return Assignment|null */ protected function mapRank(array $stats, Collection $assignments, string $queueType): ?Assignment { diff --git a/app/Services/Gateways/GameGateway.php b/app/Services/Gateways/GameGateway.php index 53e9845..cc16141 100644 --- a/app/Services/Gateways/GameGateway.php +++ b/app/Services/Gateways/GameGateway.php @@ -25,10 +25,7 @@ public function grabRankImage(string $rankName): ?string; public function grabRanks(): ?array; /** - * @param GameUser $gameUser - * @param array $stats * @param Collection $assignments - * @return array */ public function mapStats( GameUser $gameUser, diff --git a/app/Services/Gateways/GameGatewayFactory.php b/app/Services/Gateways/GameGatewayFactory.php index 078059e..ad0d220 100644 --- a/app/Services/Gateways/GameGatewayFactory.php +++ b/app/Services/Gateways/GameGatewayFactory.php @@ -10,9 +10,6 @@ class GameGatewayFactory implements GameGatewayFactoryInterface { /** - * @param string $gameName - * @return GameGateway - * * @throws InvalidGatewayException */ public function create(string $gameName): GameGateway diff --git a/app/Services/Gateways/LeagueOfLegendsGateway.php b/app/Services/Gateways/LeagueOfLegendsGateway.php index 09e3ad7..35f1f0a 100644 --- a/app/Services/Gateways/LeagueOfLegendsGateway.php +++ b/app/Services/Gateways/LeagueOfLegendsGateway.php @@ -124,18 +124,11 @@ public function setLanguageCode(string $languageCode): LeagueOfLegendsGateway return $this; } - /** - * @return int - */ public function getMatchCount(): int { return $this->matchCount; } - /** - * @param int $matchCount - * @return LeagueOfLegendsGateway - */ public function setMatchCount(int $matchCount): LeagueOfLegendsGateway { $this->matchCount = $matchCount; @@ -328,7 +321,7 @@ public function grabRankImage(string $rankName): ?string { $rankImage = null; if (! $this->getRankImageFolderPath()) { - if ($archiveFilePath = $this->downloadArchive('https://static.developer.riotgames.com/docs/lol/ranked-emblems.zip', 'rank-icons')) { + if ($archiveFilePath = $this->downloadArchive('https://static.developer.riotgames.com/docs/lol/ranked-emblems-latest.zip', 'rank-icons')) { $rankImageFolderPath = getcwd().'/storage/rank-icons'; if ($this->extractArchive($archiveFilePath, $rankImageFolderPath)) { $this->setRankImageFolderPath($rankImageFolderPath); @@ -337,10 +330,10 @@ public function grabRankImage(string $rankName): ?string } } - $fileName = 'Emblem_'.substr($rankName, 0, strpos($rankName, ' ') ?: strlen($rankName)).'.png'; + $fileName = 'Rank='.substr($rankName, 0, strpos($rankName, ' ') ?: strlen($rankName)).'.png'; - if (File::exists($this->getRankImageFolderPath().'/'.$fileName)) { - $rankImage = File::get($this->getRankImageFolderPath().'/'.$fileName, true); + if (File::exists($this->getRankImageFolderPath().'/Ranked Emblems Latest/'.$fileName)) { + $rankImage = File::get($this->getRankImageFolderPath().'/Ranked Emblems Latest/'.$fileName, true); } else { Log::error('No rank image found', ['rankName' => $rankName, 'fileName' => $fileName]); } @@ -360,10 +353,7 @@ public function grabRanks(): ?array } /** - * @param GameUser $gameUser - * @param array $stats * @param Collection $assignments - * @return array */ public function mapStats(GameUser $gameUser, array $stats, Collection $assignments): array { @@ -504,10 +494,7 @@ protected function grabMatches(GameUser $gameUser, int $offset, int $count, stri } /** - * @param GameUser $gameUser - * @param array $match * @param Collection $assignments - * @return Assignment|null */ protected function mapChampion(GameUser $gameUser, array $match, Collection $assignments): ?Assignment { @@ -523,10 +510,7 @@ protected function mapChampion(GameUser $gameUser, array $match, Collection $ass } /** - * @param GameUser $gameUser - * @param array $match * @param Collection $assignments - * @return Assignment|null */ protected function mapLane(GameUser $gameUser, array $match, Collection $assignments): ?Assignment { @@ -542,10 +526,7 @@ protected function mapLane(GameUser $gameUser, array $match, Collection $assignm } /** - * @param GameUser $gameUser - * @param array $matches * @param Collection $assignments - * @return array */ protected function mapMatches(GameUser $gameUser, array $matches, Collection $assignments): array { @@ -589,10 +570,7 @@ protected function mapMatches(GameUser $gameUser, array $matches, Collection $as } /** - * @param array $leagues * @param Collection $assignments - * @param string $queueType - * @return Assignment|null */ protected function mapRank(array $leagues, Collection $assignments, string $queueType): ?Assignment { diff --git a/app/Services/Gateways/TeamfightTacticsGateway.php b/app/Services/Gateways/TeamfightTacticsGateway.php index 69101f7..a83bbe4 100644 --- a/app/Services/Gateways/TeamfightTacticsGateway.php +++ b/app/Services/Gateways/TeamfightTacticsGateway.php @@ -92,10 +92,7 @@ public function grabPositions(): ?array } /** - * @param GameUser $gameUser - * @param array $stats * @param Collection $assignments - * @return array */ public function mapStats(GameUser $gameUser, array $stats, Collection $assignments): array { @@ -114,10 +111,7 @@ public function mapStats(GameUser $gameUser, array $stats, Collection $assignmen } /** - * @param array $leagues * @param Collection $assignments - * @param string $queueType - * @return Assignment|null */ protected function mapRank(array $leagues, Collection $assignments, string $queueType): ?Assignment { diff --git a/app/Services/Gateways/TeamspeakGateway.php b/app/Services/Gateways/TeamspeakGateway.php index de277fc..5ac4ada 100644 --- a/app/Services/Gateways/TeamspeakGateway.php +++ b/app/Services/Gateways/TeamspeakGateway.php @@ -236,7 +236,6 @@ public static function getServerGroups(): array } /** - * @param TeamSpeak3_Node_Client $client * @return array */ public static function getServerGroupsAssignedToClient(TeamSpeak3_Node_Client $client): array diff --git a/app/Services/UserService.php b/app/Services/UserService.php index 61c2a25..5eb0a19 100644 --- a/app/Services/UserService.php +++ b/app/Services/UserService.php @@ -261,9 +261,7 @@ protected function registerUser(Game $game, string $identityId, array $params): } /** - * @param GameUser $gameUser * @param Collection $assignments - * @return void */ protected function removeServerGroups(GameUser $gameUser, Collection $assignments): void { @@ -280,10 +278,7 @@ protected function removeServerGroups(GameUser $gameUser, Collection $assignment } /** - * @param GameUser $gameUser * @param Collection $assignments - * @param GameGateway $interface - * @return void */ protected function updateServerGroups(GameUser $gameUser, Collection $assignments, GameGateway $interface): void { diff --git a/app/Services/UserServiceInterface.php b/app/Services/UserServiceInterface.php index 7b90ba7..154bf83 100644 --- a/app/Services/UserServiceInterface.php +++ b/app/Services/UserServiceInterface.php @@ -10,69 +10,41 @@ public function handleAdmin(User $user, array $params = []): void; /** * Shows all available commands - * - * @param string $identityId - * @return void */ public function handleHelp(string $identityId): void; /** * Hide type - * - * @param User $user - * @param array $params - * @return void */ public function handleHide(User $user, array $params = []): void; /** * Handels invalid commands - * - * @param string $identityId - * @param array $params - * @return void */ public function handleInvalid(string $identityId, array $params = []): void; /** * Handels !register command in teamspeak chat - * - * @param string $identityId - * @param array $params - * @return void */ public function handleRegister(string $identityId, array $params = []): void; /** * Show type - * - * @param User $user - * @param array $params - * @return void */ public function handleShow(User $user, array $params = []): void; /** * Handels !unregister command in teamspeak chat - * - * @param User $user - * @param array $params - * @return void */ public function handleUnregister(User $user, array $params = []): void; /** * Handels !update command in teamspeak chat - * - * @param User $user - * @return void */ public function handleUpdate(User $user): void; /** * Updates all clients which are currently online - * - * @return void */ public function handleUpdateAll(): void; } diff --git a/composer.lock b/composer.lock index ed74116..27616b0 100644 --- a/composer.lock +++ b/composer.lock @@ -75,26 +75,25 @@ }, { "name": "brick/math", - "version": "0.10.2", + "version": "0.11.0", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f" + "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/459f2781e1a08d52ee56b0b1444086e038561e3f", - "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f", + "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478", + "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478", "shasum": "" }, "require": { - "ext-json": "*", - "php": "^7.4 || ^8.0" + "php": "^8.0" }, "require-dev": { "php-coveralls/php-coveralls": "^2.2", "phpunit/phpunit": "^9.0", - "vimeo/psalm": "4.25.0" + "vimeo/psalm": "5.0.0" }, "type": "library", "autoload": { @@ -119,7 +118,7 @@ ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.10.2" + "source": "https://github.com/brick/math/tree/0.11.0" }, "funding": [ { @@ -127,7 +126,7 @@ "type": "github" } ], - "time": "2022-08-10T22:54:19+00:00" + "time": "2023-01-15T23:15:59+00:00" }, { "name": "doctrine/cache", @@ -224,16 +223,16 @@ }, { "name": "doctrine/dbal", - "version": "3.5.2", + "version": "3.6.1", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "63e513cebbbaf96a6795e5c5ee34d205831bfc85" + "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/63e513cebbbaf96a6795e5c5ee34d205831bfc85", - "reference": "63e513cebbbaf96a6795e5c5ee34d205831bfc85", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/57815c7bbcda3cd18871d253c1dd8cbe56f8526e", + "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e", "shasum": "" }, "require": { @@ -246,13 +245,14 @@ "psr/log": "^1|^2|^3" }, "require-dev": { - "doctrine/coding-standard": "11.0.0", + "doctrine/coding-standard": "11.1.0", + "fig/log-test": "^1", "jetbrains/phpstorm-stubs": "2022.3", - "phpstan/phpstan": "1.9.2", - "phpstan/phpstan-strict-rules": "^1.4", - "phpunit/phpunit": "9.5.27", + "phpstan/phpstan": "1.10.3", + "phpstan/phpstan-strict-rules": "^1.5", + "phpunit/phpunit": "9.6.4", "psalm/plugin-phpunit": "0.18.4", - "squizlabs/php_codesniffer": "3.7.1", + "squizlabs/php_codesniffer": "3.7.2", "symfony/cache": "^5.4|^6.0", "symfony/console": "^4.4|^5.4|^6.0", "vimeo/psalm": "4.30.0" @@ -315,7 +315,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.5.2" + "source": "https://github.com/doctrine/dbal/tree/3.6.1" }, "funding": [ { @@ -331,7 +331,7 @@ "type": "tidelift" } ], - "time": "2022-12-19T08:17:34+00:00" + "time": "2023-03-02T19:26:24+00:00" }, { "name": "doctrine/deprecations", @@ -621,16 +621,16 @@ }, { "name": "filp/whoops", - "version": "2.14.6", + "version": "2.15.1", "source": { "type": "git", "url": "https://github.com/filp/whoops.git", - "reference": "f7948baaa0330277c729714910336383286305da" + "reference": "e864ac957acd66e1565f25efda61e37791a5db0b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/f7948baaa0330277c729714910336383286305da", - "reference": "f7948baaa0330277c729714910336383286305da", + "url": "https://api.github.com/repos/filp/whoops/zipball/e864ac957acd66e1565f25efda61e37791a5db0b", + "reference": "e864ac957acd66e1565f25efda61e37791a5db0b", "shasum": "" }, "require": { @@ -680,7 +680,7 @@ ], "support": { "issues": "https://github.com/filp/whoops/issues", - "source": "https://github.com/filp/whoops/tree/2.14.6" + "source": "https://github.com/filp/whoops/tree/2.15.1" }, "funding": [ { @@ -688,7 +688,7 @@ "type": "github" } ], - "time": "2022-11-02T16:23:29+00:00" + "time": "2023-03-06T18:09:13+00:00" }, { "name": "fruitcake/php-cors", @@ -763,24 +763,24 @@ }, { "name": "graham-campbell/result-type", - "version": "v1.1.0", + "version": "v1.1.1", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Result-Type.git", - "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8" + "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/a878d45c1914464426dc94da61c9e1d36ae262a8", - "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", + "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9" + "phpoption/phpoption": "^1.9.1" }, "require-dev": { - "phpunit/phpunit": "^8.5.28 || ^9.5.21" + "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" }, "type": "library", "autoload": { @@ -809,7 +809,7 @@ ], "support": { "issues": "https://github.com/GrahamCampbell/Result-Type/issues", - "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.0" + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1" }, "funding": [ { @@ -821,7 +821,7 @@ "type": "tidelift" } ], - "time": "2022-07-30T15:56:11+00:00" + "time": "2023-02-25T20:23:15+00:00" }, { "name": "guzzlehttp/guzzle", @@ -1037,16 +1037,16 @@ }, { "name": "guzzlehttp/psr7", - "version": "2.4.3", + "version": "2.4.4", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "67c26b443f348a51926030c83481b85718457d3d" + "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d", - "reference": "67c26b443f348a51926030c83481b85718457d3d", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf", + "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf", "shasum": "" }, "require": { @@ -1136,7 +1136,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.4.3" + "source": "https://github.com/guzzle/psr7/tree/2.4.4" }, "funding": [ { @@ -1152,11 +1152,95 @@ "type": "tidelift" } ], - "time": "2022-10-26T14:07:24+00:00" + "time": "2023-03-09T13:19:02+00:00" + }, + { + "name": "guzzlehttp/uri-template", + "version": "v1.0.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/uri-template.git", + "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2", + "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "symfony/polyfill-php80": "^1.17" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.19 || ^9.5.8", + "uri-template/tests": "1.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\UriTemplate\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + } + ], + "description": "A polyfill class for uri_template of PHP", + "keywords": [ + "guzzlehttp", + "uri-template" + ], + "support": { + "issues": "https://github.com/guzzle/uri-template/issues", + "source": "https://github.com/guzzle/uri-template/tree/v1.0.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", + "type": "tidelift" + } + ], + "time": "2021-10-07T12:57:01+00:00" }, { "name": "illuminate/bus", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/bus.git", @@ -1209,16 +1293,16 @@ }, { "name": "illuminate/cache", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/cache.git", - "reference": "c29ed1ddb5348da7bed65be9205666619e8eab8e" + "reference": "574793d489eeea8ebecc234e9dd7ce4d3861c97b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/cache/zipball/c29ed1ddb5348da7bed65be9205666619e8eab8e", - "reference": "c29ed1ddb5348da7bed65be9205666619e8eab8e", + "url": "https://api.github.com/repos/illuminate/cache/zipball/574793d489eeea8ebecc234e9dd7ce4d3861c97b", + "reference": "574793d489eeea8ebecc234e9dd7ce4d3861c97b", "shasum": "" }, "require": { @@ -1232,6 +1316,8 @@ "psr/simple-cache-implementation": "1.0|2.0|3.0" }, "suggest": { + "ext-apcu": "Required to use the APC cache driver.", + "ext-filter": "Required to use the DynamoDb cache driver.", "ext-memcached": "Required to use the memcache cache driver.", "illuminate/database": "Required to use the database cache driver (^9.0).", "illuminate/filesystem": "Required to use the file cache driver (^9.0).", @@ -1265,20 +1351,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-12-06T23:25:55+00:00" + "time": "2023-02-13T22:29:35+00:00" }, { "name": "illuminate/collections", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/collections.git", - "reference": "7a8afa0875d7de162f30865d9fae33c8fb235fa2" + "reference": "0168d0e44ea0c4fe5451fe08cde7049b9e9f9741" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/collections/zipball/7a8afa0875d7de162f30865d9fae33c8fb235fa2", - "reference": "7a8afa0875d7de162f30865d9fae33c8fb235fa2", + "url": "https://api.github.com/repos/illuminate/collections/zipball/0168d0e44ea0c4fe5451fe08cde7049b9e9f9741", + "reference": "0168d0e44ea0c4fe5451fe08cde7049b9e9f9741", "shasum": "" }, "require": { @@ -1320,20 +1406,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-12-02T18:48:05+00:00" + "time": "2023-02-22T11:32:27+00:00" }, { "name": "illuminate/conditionable", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/conditionable.git", - "reference": "5b40f51ccb07e0e7b1ec5559d8db9e0e2dc51883" + "reference": "bea24daa0fa84b7e7b0d5b84f62c71b7e2dc3364" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/conditionable/zipball/5b40f51ccb07e0e7b1ec5559d8db9e0e2dc51883", - "reference": "5b40f51ccb07e0e7b1ec5559d8db9e0e2dc51883", + "url": "https://api.github.com/repos/illuminate/conditionable/zipball/bea24daa0fa84b7e7b0d5b84f62c71b7e2dc3364", + "reference": "bea24daa0fa84b7e7b0d5b84f62c71b7e2dc3364", "shasum": "" }, "require": { @@ -1366,11 +1452,11 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-07-29T19:44:19+00:00" + "time": "2023-02-01T21:42:32+00:00" }, { "name": "illuminate/config", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/config.git", @@ -1418,19 +1504,20 @@ }, { "name": "illuminate/console", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/console.git", - "reference": "152e203af3dc19350b335c633d6b5c0cd06c40fa" + "reference": "d61ea985b3b5912e0ca5b9d95c1caf21eee5b74c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/console/zipball/152e203af3dc19350b335c633d6b5c0cd06c40fa", - "reference": "152e203af3dc19350b335c633d6b5c0cd06c40fa", + "url": "https://api.github.com/repos/illuminate/console/zipball/d61ea985b3b5912e0ca5b9d95c1caf21eee5b74c", + "reference": "d61ea985b3b5912e0ca5b9d95c1caf21eee5b74c", "shasum": "" }, "require": { + "ext-mbstring": "*", "illuminate/collections": "^9.0", "illuminate/contracts": "^9.0", "illuminate/macroable": "^9.0", @@ -1443,6 +1530,7 @@ }, "suggest": { "dragonmantank/cron-expression": "Required to use scheduler (^3.3.2).", + "ext-pcntl": "Required to use signal trapping.", "guzzlehttp/guzzle": "Required to use the ping methods on schedules (^7.5).", "illuminate/bus": "Required to use the scheduled job dispatcher (^9.0).", "illuminate/container": "Required to use the scheduler (^9.0).", @@ -1476,20 +1564,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-12-16T16:52:48+00:00" + "time": "2023-02-07T17:06:46+00:00" }, { "name": "illuminate/container", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/container.git", - "reference": "8ca3036459e26dc7cdedaf0f882b625757cc341e" + "reference": "1641dda2d0750b68bb1264a3b37ff3973f2e6265" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/container/zipball/8ca3036459e26dc7cdedaf0f882b625757cc341e", - "reference": "8ca3036459e26dc7cdedaf0f882b625757cc341e", + "url": "https://api.github.com/repos/illuminate/container/zipball/1641dda2d0750b68bb1264a3b37ff3973f2e6265", + "reference": "1641dda2d0750b68bb1264a3b37ff3973f2e6265", "shasum": "" }, "require": { @@ -1527,20 +1615,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-09-05T15:58:42+00:00" + "time": "2023-01-24T16:54:18+00:00" }, { "name": "illuminate/contracts", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/contracts.git", - "reference": "c7cc6e6198cac6dfdead111f9758de25413188b7" + "reference": "44f65d723b13823baa02ff69751a5948bde60c22" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/contracts/zipball/c7cc6e6198cac6dfdead111f9758de25413188b7", - "reference": "c7cc6e6198cac6dfdead111f9758de25413188b7", + "url": "https://api.github.com/repos/illuminate/contracts/zipball/44f65d723b13823baa02ff69751a5948bde60c22", + "reference": "44f65d723b13823baa02ff69751a5948bde60c22", "shasum": "" }, "require": { @@ -1575,24 +1663,25 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-10-31T22:25:40+00:00" + "time": "2023-02-08T14:36:30+00:00" }, { "name": "illuminate/database", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/database.git", - "reference": "27d5931bcf50a319e803800ae0ac2251c710f7d4" + "reference": "fc7e9cf5d4c7c4c0a2800c0d345cc9985fb1b040" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/database/zipball/27d5931bcf50a319e803800ae0ac2251c710f7d4", - "reference": "27d5931bcf50a319e803800ae0ac2251c710f7d4", + "url": "https://api.github.com/repos/illuminate/database/zipball/fc7e9cf5d4c7c4c0a2800c0d345cc9985fb1b040", + "reference": "fc7e9cf5d4c7c4c0a2800c0d345cc9985fb1b040", "shasum": "" }, "require": { - "ext-json": "*", + "brick/math": "^0.9.3|^0.10.2|^0.11", + "ext-pdo": "*", "illuminate/collections": "^9.0", "illuminate/container": "^9.0", "illuminate/contracts": "^9.0", @@ -1603,6 +1692,7 @@ }, "suggest": { "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).", + "ext-filter": "Required to use the Postgres database driver.", "fakerphp/faker": "Required to use the eloquent factory builder (^1.21).", "illuminate/console": "Required to use the database commands (^9.0).", "illuminate/events": "Required to use the observers with Eloquent (^9.0).", @@ -1643,11 +1733,11 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-12-19T17:52:36+00:00" + "time": "2023-02-12T20:16:50+00:00" }, { "name": "illuminate/events", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/events.git", @@ -1702,16 +1792,16 @@ }, { "name": "illuminate/filesystem", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/filesystem.git", - "reference": "9923cb717f5505b84200fb78feba1c2f2fe9fe83" + "reference": "8168361548b2c5e2e501096cfbadb62a4a526290" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/filesystem/zipball/9923cb717f5505b84200fb78feba1c2f2fe9fe83", - "reference": "9923cb717f5505b84200fb78feba1c2f2fe9fe83", + "url": "https://api.github.com/repos/illuminate/filesystem/zipball/8168361548b2c5e2e501096cfbadb62a4a526290", + "reference": "8168361548b2c5e2e501096cfbadb62a4a526290", "shasum": "" }, "require": { @@ -1723,7 +1813,9 @@ "symfony/finder": "^6.0" }, "suggest": { + "ext-fileinfo": "Required to use the Filesystem class.", "ext-ftp": "Required to use the Flysystem FTP driver.", + "ext-hash": "Required to use the Filesystem class.", "illuminate/http": "Required for handling uploaded files (^7.0).", "league/flysystem": "Required to use the Flysystem local driver (^3.0.16).", "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", @@ -1760,25 +1852,26 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-12-08T16:55:54+00:00" + "time": "2023-02-10T20:24:35+00:00" }, { "name": "illuminate/http", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/http.git", - "reference": "5a0284d6bff14a233c2280f0782be4b5bc6b03ab" + "reference": "dc92ce3a3dbc5c363fc5a70b2e5d3d109bc88ce2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/http/zipball/5a0284d6bff14a233c2280f0782be4b5bc6b03ab", - "reference": "5a0284d6bff14a233c2280f0782be4b5bc6b03ab", + "url": "https://api.github.com/repos/illuminate/http/zipball/dc92ce3a3dbc5c363fc5a70b2e5d3d109bc88ce2", + "reference": "dc92ce3a3dbc5c363fc5a70b2e5d3d109bc88ce2", "shasum": "" }, "require": { - "ext-json": "*", + "ext-filter": "*", "fruitcake/php-cors": "^1.2", + "guzzlehttp/uri-template": "^1.0", "illuminate/collections": "^9.0", "illuminate/macroable": "^9.0", "illuminate/session": "^9.0", @@ -1819,20 +1912,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-12-16T16:52:48+00:00" + "time": "2023-02-06T16:48:45+00:00" }, { "name": "illuminate/log", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/log.git", - "reference": "a9ab7719f021c32b0c729d5240d287655d72e60c" + "reference": "6c18bd95576ae85ef5144b96c73a0973b92f78b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/log/zipball/a9ab7719f021c32b0c729d5240d287655d72e60c", - "reference": "a9ab7719f021c32b0c729d5240d287655d72e60c", + "url": "https://api.github.com/repos/illuminate/log/zipball/6c18bd95576ae85ef5144b96c73a0973b92f78b2", + "reference": "6c18bd95576ae85ef5144b96c73a0973b92f78b2", "shasum": "" }, "require": { @@ -1868,11 +1961,11 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-12-06T23:25:55+00:00" + "time": "2023-01-18T14:40:55+00:00" }, { "name": "illuminate/macroable", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/macroable.git", @@ -1918,7 +2011,7 @@ }, { "name": "illuminate/pipeline", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/pipeline.git", @@ -1966,20 +2059,21 @@ }, { "name": "illuminate/session", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/session.git", - "reference": "1e5d31bf7c6ed5844cedd4c36cf8251ec677309e" + "reference": "71972e3e01ef501876d916c02c4d9bff77549e33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/session/zipball/1e5d31bf7c6ed5844cedd4c36cf8251ec677309e", - "reference": "1e5d31bf7c6ed5844cedd4c36cf8251ec677309e", + "url": "https://api.github.com/repos/illuminate/session/zipball/71972e3e01ef501876d916c02c4d9bff77549e33", + "reference": "71972e3e01ef501876d916c02c4d9bff77549e33", "shasum": "" }, "require": { - "ext-json": "*", + "ext-ctype": "*", + "ext-session": "*", "illuminate/collections": "^9.0", "illuminate/contracts": "^9.0", "illuminate/filesystem": "^9.0", @@ -2018,25 +2112,26 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-12-14T16:03:04+00:00" + "time": "2023-02-06T02:52:41+00:00" }, { "name": "illuminate/support", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/support.git", - "reference": "d7f7c07e35a2c09cbeeddc0168826cf05a2eeb84" + "reference": "63dcb4523ccdfc01cdf5be17791f07cc20982a1e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/support/zipball/d7f7c07e35a2c09cbeeddc0168826cf05a2eeb84", - "reference": "d7f7c07e35a2c09cbeeddc0168826cf05a2eeb84", + "url": "https://api.github.com/repos/illuminate/support/zipball/63dcb4523ccdfc01cdf5be17791f07cc20982a1e", + "reference": "63dcb4523ccdfc01cdf5be17791f07cc20982a1e", "shasum": "" }, "require": { "doctrine/inflector": "^2.0", - "ext-json": "*", + "ext-ctype": "*", + "ext-filter": "*", "ext-mbstring": "*", "illuminate/collections": "^9.0", "illuminate/conditionable": "^9.0", @@ -2088,23 +2183,24 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-12-20T14:03:34+00:00" + "time": "2023-02-13T16:54:43+00:00" }, { "name": "illuminate/testing", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/testing.git", - "reference": "7498d121a0491881e647189666e6a44dafc9a08f" + "reference": "056d51238d8f8c3c4304ca94138c21d2d7617819" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/testing/zipball/7498d121a0491881e647189666e6a44dafc9a08f", - "reference": "7498d121a0491881e647189666e6a44dafc9a08f", + "url": "https://api.github.com/repos/illuminate/testing/zipball/056d51238d8f8c3c4304ca94138c21d2d7617819", + "reference": "056d51238d8f8c3c4304ca94138c21d2d7617819", "shasum": "" }, "require": { + "ext-mbstring": "*", "illuminate/collections": "^9.0", "illuminate/contracts": "^9.0", "illuminate/macroable": "^9.0", @@ -2146,24 +2242,24 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-12-19T10:26:22+00:00" + "time": "2023-02-08T22:39:16+00:00" }, { "name": "illuminate/view", - "version": "v9.45.0", + "version": "v9.52.4", "source": { "type": "git", "url": "https://github.com/illuminate/view.git", - "reference": "ceb08678d07b1d6092f3ef1d9154db5d4f155eb4" + "reference": "f263ca8f106e5a6290671384684dd27ae30b7f9b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/view/zipball/ceb08678d07b1d6092f3ef1d9154db5d4f155eb4", - "reference": "ceb08678d07b1d6092f3ef1d9154db5d4f155eb4", + "url": "https://api.github.com/repos/illuminate/view/zipball/f263ca8f106e5a6290671384684dd27ae30b7f9b", + "reference": "f263ca8f106e5a6290671384684dd27ae30b7f9b", "shasum": "" }, "require": { - "ext-json": "*", + "ext-tokenizer": "*", "illuminate/collections": "^9.0", "illuminate/container": "^9.0", "illuminate/contracts": "^9.0", @@ -2200,30 +2296,30 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-12-16T19:07:05+00:00" + "time": "2023-02-08T14:36:30+00:00" }, { "name": "jolicode/jolinotif", - "version": "v2.4.0", + "version": "v2.5.0", "source": { "type": "git", "url": "https://github.com/jolicode/JoliNotif.git", - "reference": "a15bfc0d5aef432f150385924ede4e099643edb7" + "reference": "a10a7cb3bf6dbf8833d1d1f1f0554506cb1d9eaa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jolicode/JoliNotif/zipball/a15bfc0d5aef432f150385924ede4e099643edb7", - "reference": "a15bfc0d5aef432f150385924ede4e099643edb7", + "url": "https://api.github.com/repos/jolicode/JoliNotif/zipball/a10a7cb3bf6dbf8833d1d1f1f0554506cb1d9eaa", + "reference": "a10a7cb3bf6dbf8833d1d1f1f0554506cb1d9eaa", "shasum": "" }, "require": { - "php": ">=7.4", - "symfony/process": "^4.0|^5.0|^6.0" + "php": ">=8.0", + "symfony/process": "^5.4 || ^6.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.0", - "symfony/finder": "^5.0", - "symfony/phpunit-bridge": "^5.0" + "friendsofphp/php-cs-fixer": "^3.13", + "symfony/finder": "^5.4 || ^6.0", + "symfony/phpunit-bridge": "^5.4 || ^6.0" }, "bin": [ "jolinotif" @@ -2254,7 +2350,7 @@ ], "support": { "issues": "https://github.com/jolicode/JoliNotif/issues", - "source": "https://github.com/jolicode/JoliNotif/tree/v2.4.0" + "source": "https://github.com/jolicode/JoliNotif/tree/v2.5.0" }, "funding": [ { @@ -2262,7 +2358,7 @@ "type": "tidelift" } ], - "time": "2021-12-01T16:20:42+00:00" + "time": "2022-12-24T13:38:12+00:00" }, { "name": "laminas/laminas-servicemanager", @@ -2475,16 +2571,16 @@ }, { "name": "laravel-zero/foundation", - "version": "v9.26.1", + "version": "v9.50.2", "source": { "type": "git", "url": "https://github.com/laravel-zero/foundation.git", - "reference": "fdd15cfcbdda63bfac5f2d32e5ba141271927732" + "reference": "da0168916babad0348d1ab17bed14fd41e5b32a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-zero/foundation/zipball/fdd15cfcbdda63bfac5f2d32e5ba141271927732", - "reference": "fdd15cfcbdda63bfac5f2d32e5ba141271927732", + "url": "https://api.github.com/repos/laravel-zero/foundation/zipball/da0168916babad0348d1ab17bed14fd41e5b32a8", + "reference": "da0168916babad0348d1ab17bed14fd41e5b32a8", "shasum": "" }, "require": { @@ -2514,9 +2610,9 @@ "laravel" ], "support": { - "source": "https://github.com/laravel-zero/foundation/tree/v9.26.1" + "source": "https://github.com/laravel-zero/foundation/tree/v9.50.2" }, - "time": "2022-08-26T14:55:36+00:00" + "time": "2023-02-06T13:25:57+00:00" }, { "name": "laravel-zero/framework", @@ -2620,16 +2716,16 @@ }, { "name": "league/flysystem", - "version": "3.11.0", + "version": "3.12.3", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "7e423e5dd240a60adfab9bde058d7668863b7731" + "reference": "81e87e74dd5213795c7846d65089712d2dda90ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/7e423e5dd240a60adfab9bde058d7668863b7731", - "reference": "7e423e5dd240a60adfab9bde058d7668863b7731", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/81e87e74dd5213795c7846d65089712d2dda90ce", + "reference": "81e87e74dd5213795c7846d65089712d2dda90ce", "shasum": "" }, "require": { @@ -2646,7 +2742,7 @@ "require-dev": { "async-aws/s3": "^1.5", "async-aws/simple-s3": "^1.1", - "aws/aws-sdk-php": "^3.198.1", + "aws/aws-sdk-php": "^3.220.0", "composer/semver": "^3.0", "ext-fileinfo": "*", "ext-ftp": "*", @@ -2691,7 +2787,7 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.11.0" + "source": "https://github.com/thephpleague/flysystem/tree/3.12.3" }, "funding": [ { @@ -2707,7 +2803,7 @@ "type": "tidelift" } ], - "time": "2022-12-02T14:39:57+00:00" + "time": "2023-02-18T15:32:41+00:00" }, { "name": "league/mime-type-detection", @@ -2767,16 +2863,16 @@ }, { "name": "monolog/monolog", - "version": "2.8.0", + "version": "2.9.1", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "720488632c590286b88b80e62aa3d3d551ad4a50" + "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50", - "reference": "720488632c590286b88b80e62aa3d3d551ad4a50", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1", + "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1", "shasum": "" }, "require": { @@ -2791,7 +2887,7 @@ "doctrine/couchdb": "~1.0@dev", "elasticsearch/elasticsearch": "^7 || ^8", "ext-json": "*", - "graylog2/gelf-php": "^1.4.2", + "graylog2/gelf-php": "^1.4.2 || ^2@dev", "guzzlehttp/guzzle": "^7.4", "guzzlehttp/psr7": "^2.2", "mongodb/mongodb": "^1.8", @@ -2853,7 +2949,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/2.8.0" + "source": "https://github.com/Seldaek/monolog/tree/2.9.1" }, "funding": [ { @@ -2865,20 +2961,20 @@ "type": "tidelift" } ], - "time": "2022-07-24T11:55:47+00:00" + "time": "2023-02-06T13:44:46+00:00" }, { "name": "nesbot/carbon", - "version": "2.64.0", + "version": "2.66.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "889546413c97de2d05063b8cb7b193c2531ea211" + "reference": "496712849902241f04902033b0441b269effe001" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/889546413c97de2d05063b8cb7b193c2531ea211", - "reference": "889546413c97de2d05063b8cb7b193c2531ea211", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001", + "reference": "496712849902241f04902033b0441b269effe001", "shasum": "" }, "require": { @@ -2967,20 +3063,20 @@ "type": "tidelift" } ], - "time": "2022-11-26T17:36:00+00:00" + "time": "2023-01-29T18:53:47+00:00" }, { "name": "nunomaduro/collision", - "version": "v6.3.1", + "version": "v6.4.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "0f6349c3ed5dd28467087b08fb59384bb458a22b" + "reference": "f05978827b9343cba381ca05b8c7deee346b6015" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/0f6349c3ed5dd28467087b08fb59384bb458a22b", - "reference": "0f6349c3ed5dd28467087b08fb59384bb458a22b", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015", + "reference": "f05978827b9343cba381ca05b8c7deee346b6015", "shasum": "" }, "require": { @@ -3055,27 +3151,30 @@ "type": "patreon" } ], - "time": "2022-09-29T12:29:49+00:00" + "time": "2023-01-03T12:54:54+00:00" }, { "name": "nunomaduro/laravel-console-menu", - "version": "v3.3.0", + "version": "v3.4.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/laravel-console-menu.git", - "reference": "a1bc84af2f6eae3dcbf2e59ff889c6fbe671b735" + "reference": "8cef75ec2137f4138f460e3ca7a2fb10ef08db8f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/laravel-console-menu/zipball/a1bc84af2f6eae3dcbf2e59ff889c6fbe671b735", - "reference": "a1bc84af2f6eae3dcbf2e59ff889c6fbe671b735", + "url": "https://api.github.com/repos/nunomaduro/laravel-console-menu/zipball/8cef75ec2137f4138f460e3ca7a2fb10ef08db8f", + "reference": "8cef75ec2137f4138f460e3ca7a2fb10ef08db8f", "shasum": "" }, "require": { - "illuminate/console": "^6.0|^7.0|^8.0|^9.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0", - "php": "^7.2.5|^8.0", - "php-school/cli-menu": "^4.0" + "illuminate/console": "^9.0|^10.0", + "illuminate/support": "^9.0|^10.0", + "php": "^8.1", + "php-school/cli-menu": "^4.3" + }, + "require-dev": { + "laravel/pint": "^1.4" }, "type": "library", "extra": { @@ -3129,26 +3228,29 @@ "type": "patreon" } ], - "time": "2022-01-13T14:42:31+00:00" + "time": "2023-01-11T14:14:56+00:00" }, { "name": "nunomaduro/laravel-console-summary", - "version": "v1.8.0", + "version": "v1.9.1", "source": { "type": "git", "url": "https://github.com/nunomaduro/laravel-console-summary.git", - "reference": "1b32af3f39a744223c4ed6d2a5080fc5baa037da" + "reference": "235a9de26ab2dfd0612558cedf2cbd2ad686b884" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/laravel-console-summary/zipball/1b32af3f39a744223c4ed6d2a5080fc5baa037da", - "reference": "1b32af3f39a744223c4ed6d2a5080fc5baa037da", + "url": "https://api.github.com/repos/nunomaduro/laravel-console-summary/zipball/235a9de26ab2dfd0612558cedf2cbd2ad686b884", + "reference": "235a9de26ab2dfd0612558cedf2cbd2ad686b884", "shasum": "" }, "require": { - "illuminate/console": "^7.0|^8.0|^9.0", - "illuminate/support": "^7.0|^8.0|^9.0", - "php": "^7.2.5|^8.0" + "illuminate/console": "^9.0|^10.0", + "illuminate/support": "^9.0|^10.0", + "php": "^8.1" + }, + "require-dev": { + "laravel/pint": "^1.4" }, "type": "library", "extra": { @@ -3188,29 +3290,29 @@ "issues": "https://github.com/nunomaduro/laravel-console-summary/issues", "source": "https://github.com/nunomaduro/laravel-console-summary" }, - "time": "2022-01-13T14:34:23+00:00" + "time": "2023-02-03T15:58:45+00:00" }, { "name": "nunomaduro/laravel-console-task", - "version": "v1.7.0", + "version": "v1.8.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/laravel-console-task.git", - "reference": "7613432d2eb77498d5c7bdce560a33b7d82d8eeb" + "reference": "e49e7be261a7b7329c4538777489b355fb234bde" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/laravel-console-task/zipball/7613432d2eb77498d5c7bdce560a33b7d82d8eeb", - "reference": "7613432d2eb77498d5c7bdce560a33b7d82d8eeb", + "url": "https://api.github.com/repos/nunomaduro/laravel-console-task/zipball/e49e7be261a7b7329c4538777489b355fb234bde", + "reference": "e49e7be261a7b7329c4538777489b355fb234bde", "shasum": "" }, "require": { - "illuminate/console": "^6.0|^7.0|^8.0|^9.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0", - "php": "^7.2.5|^8.0" + "illuminate/console": "^9.0|^10.0", + "illuminate/support": "^9.0|^10.0", + "php": "^8.1" }, "require-dev": { - "pestphp/pest": "^1.20" + "pestphp/pest": "^1.22.3" }, "type": "library", "extra": { @@ -3250,31 +3352,31 @@ "issues": "https://github.com/nunomaduro/laravel-console-task/issues", "source": "https://github.com/nunomaduro/laravel-console-task" }, - "time": "2022-01-13T14:40:41+00:00" + "time": "2023-01-11T15:16:19+00:00" }, { "name": "nunomaduro/laravel-desktop-notifier", - "version": "v2.6.0", + "version": "v2.7.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/laravel-desktop-notifier.git", - "reference": "f70febce1c6cc931bc71fd9c61049eb6b8d3c302" + "reference": "6a1e27a215e007c86df88bf038d54c343b255b60" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/laravel-desktop-notifier/zipball/f70febce1c6cc931bc71fd9c61049eb6b8d3c302", - "reference": "f70febce1c6cc931bc71fd9c61049eb6b8d3c302", + "url": "https://api.github.com/repos/nunomaduro/laravel-desktop-notifier/zipball/6a1e27a215e007c86df88bf038d54c343b255b60", + "reference": "6a1e27a215e007c86df88bf038d54c343b255b60", "shasum": "" }, "require": { - "illuminate/console": "^6.20|^7.29|^8.12|^9.0", - "illuminate/support": "^6.20|^7.29|^8.12|^9.0", - "jolicode/jolinotif": "^2.0", - "php": "^7.2.5|^8.0" + "illuminate/console": "^9.0|^10.0", + "illuminate/support": "^9.0|^10.0", + "jolicode/jolinotif": "^2.5", + "php": "^8.1" }, "require-dev": { - "graham-campbell/testbench": "^5.5", - "phpunit/phpunit": "^8.5.8|^9.0" + "graham-campbell/testbench": "^5.7", + "phpunit/phpunit": "^9.5" }, "type": "library", "extra": { @@ -3318,22 +3420,22 @@ ], "support": { "issues": "https://github.com/nunomaduro/laravel-desktop-notifier/issues", - "source": "https://github.com/nunomaduro/laravel-desktop-notifier/tree/v2.6.0" + "source": "https://github.com/nunomaduro/laravel-desktop-notifier/tree/v2.7.0" }, - "time": "2022-01-13T15:10:14+00:00" + "time": "2023-01-11T15:22:19+00:00" }, { "name": "nunomaduro/termwind", - "version": "v1.15.0", + "version": "v1.15.1", "source": { "type": "git", "url": "https://github.com/nunomaduro/termwind.git", - "reference": "594ab862396c16ead000de0c3c38f4a5cbe1938d" + "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/594ab862396c16ead000de0c3c38f4a5cbe1938d", - "reference": "594ab862396c16ead000de0c3c38f4a5cbe1938d", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc", + "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc", "shasum": "" }, "require": { @@ -3390,7 +3492,7 @@ ], "support": { "issues": "https://github.com/nunomaduro/termwind/issues", - "source": "https://github.com/nunomaduro/termwind/tree/v1.15.0" + "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1" }, "funding": [ { @@ -3406,7 +3508,7 @@ "type": "github" } ], - "time": "2022-12-20T19:00:15+00:00" + "time": "2023-02-08T01:06:31+00:00" }, { "name": "php-school/cli-menu", @@ -3531,24 +3633,24 @@ }, { "name": "phpoption/phpoption", - "version": "1.9.0", + "version": "1.9.1", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab" + "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dc5ff11e274a90cc1c743f66c9ad700ce50db9ab", - "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e", + "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8", - "phpunit/phpunit": "^8.5.28 || ^9.5.21" + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" }, "type": "library", "extra": { @@ -3590,7 +3692,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.9.0" + "source": "https://github.com/schmittjoh/php-option/tree/1.9.1" }, "funding": [ { @@ -3602,7 +3704,7 @@ "type": "tidelift" } ], - "time": "2022-07-30T15:51:26+00:00" + "time": "2023-02-25T19:38:58+00:00" }, { "name": "planetteamspeak/ts3-php-framework", @@ -4122,42 +4224,52 @@ }, { "name": "ramsey/collection", - "version": "1.2.2", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/ramsey/collection.git", - "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a" + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a", - "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a", + "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", "shasum": "" }, "require": { - "php": "^7.3 || ^8", - "symfony/polyfill-php81": "^1.23" + "php": "^8.1" }, "require-dev": { - "captainhook/captainhook": "^5.3", - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "ergebnis/composer-normalize": "^2.6", - "fakerphp/faker": "^1.5", - "hamcrest/hamcrest-php": "^2", - "jangregor/phpstan-prophecy": "^0.8", - "mockery/mockery": "^1.3", + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.28.3", + "fakerphp/faker": "^1.21", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^1.0", + "mockery/mockery": "^1.5", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.3", + "phpcsstandards/phpcsutils": "^1.0.0-rc1", "phpspec/prophecy-phpunit": "^2.0", - "phpstan/extension-installer": "^1", - "phpstan/phpstan": "^0.12.32", - "phpstan/phpstan-mockery": "^0.12.5", - "phpstan/phpstan-phpunit": "^0.12.11", - "phpunit/phpunit": "^8.5 || ^9", - "psy/psysh": "^0.10.4", - "slevomat/coding-standard": "^6.3", - "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "^4.4" + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5", + "psalm/plugin-mockery": "^1.1", + "psalm/plugin-phpunit": "^0.18.4", + "ramsey/coding-standard": "^2.0.3", + "ramsey/conventional-commits": "^1.3", + "vimeo/psalm": "^5.4" }, "type": "library", + "extra": { + "captainhook": { + "force-install": true + }, + "ramsey/conventional-commits": { + "configFile": "conventional-commits.json" + } + }, "autoload": { "psr-4": { "Ramsey\\Collection\\": "src/" @@ -4185,7 +4297,7 @@ ], "support": { "issues": "https://github.com/ramsey/collection/issues", - "source": "https://github.com/ramsey/collection/tree/1.2.2" + "source": "https://github.com/ramsey/collection/tree/2.0.0" }, "funding": [ { @@ -4197,27 +4309,27 @@ "type": "tidelift" } ], - "time": "2021-10-10T03:01:02+00:00" + "time": "2022-12-31T21:50:55+00:00" }, { "name": "ramsey/uuid", - "version": "4.7.0", + "version": "4.x-dev", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "5ed9ad582647bbc3864ef78db34bdc1afdcf9b49" + "reference": "bf2bee216a4379eaf62162307d62bb7850405fec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/5ed9ad582647bbc3864ef78db34bdc1afdcf9b49", - "reference": "5ed9ad582647bbc3864ef78db34bdc1afdcf9b49", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/bf2bee216a4379eaf62162307d62bb7850405fec", + "reference": "bf2bee216a4379eaf62162307d62bb7850405fec", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", "ext-json": "*", "php": "^8.0", - "ramsey/collection": "^1.2" + "ramsey/collection": "^1.2 || ^2.0" }, "replace": { "rhumsaa/uuid": "self.version" @@ -4251,6 +4363,7 @@ "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." }, + "default-branch": true, "type": "library", "extra": { "captainhook": { @@ -4277,7 +4390,7 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.7.0" + "source": "https://github.com/ramsey/uuid/tree/4.x" }, "funding": [ { @@ -4289,7 +4402,7 @@ "type": "tidelift" } ], - "time": "2022-12-19T22:30:49+00:00" + "time": "2023-02-07T16:14:23+00:00" }, { "name": "spatie/guzzle-rate-limiter-middleware", @@ -4345,16 +4458,16 @@ }, { "name": "symfony/console", - "version": "v6.2.2", + "version": "v6.2.7", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "5a9bd5c543f00157c55face973c149957467db31" + "reference": "cbad09eb8925b6ad4fb721c7a179344dc4a19d45" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/5a9bd5c543f00157c55face973c149957467db31", - "reference": "5a9bd5c543f00157c55face973c149957467db31", + "url": "https://api.github.com/repos/symfony/console/zipball/cbad09eb8925b6ad4fb721c7a179344dc4a19d45", + "reference": "cbad09eb8925b6ad4fb721c7a179344dc4a19d45", "shasum": "" }, "require": { @@ -4421,7 +4534,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.2.2" + "source": "https://github.com/symfony/console/tree/v6.2.7" }, "funding": [ { @@ -4437,20 +4550,20 @@ "type": "tidelift" } ], - "time": "2022-12-16T15:08:36+00:00" + "time": "2023-02-25T17:00:03+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v3.2.0", + "version": "v3.2.1", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "1ee04c65529dea5d8744774d474e7cbd2f1206d3" + "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/1ee04c65529dea5d8744774d474e7cbd2f1206d3", - "reference": "1ee04c65529dea5d8744774d474e7cbd2f1206d3", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e", + "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e", "shasum": "" }, "require": { @@ -4488,7 +4601,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.0" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1" }, "funding": [ { @@ -4504,20 +4617,20 @@ "type": "tidelift" } ], - "time": "2022-11-25T10:21:52+00:00" + "time": "2023-03-01T10:25:55+00:00" }, { "name": "symfony/error-handler", - "version": "v6.2.2", + "version": "v6.2.7", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "12a25d01cc5273b2445e125d62b61d34db42297e" + "reference": "61e90f94eb014054000bc902257d2763fac09166" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/12a25d01cc5273b2445e125d62b61d34db42297e", - "reference": "12a25d01cc5273b2445e125d62b61d34db42297e", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/61e90f94eb014054000bc902257d2763fac09166", + "reference": "61e90f94eb014054000bc902257d2763fac09166", "shasum": "" }, "require": { @@ -4559,7 +4672,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v6.2.2" + "source": "https://github.com/symfony/error-handler/tree/v6.2.7" }, "funding": [ { @@ -4575,20 +4688,20 @@ "type": "tidelift" } ], - "time": "2022-12-14T16:11:27+00:00" + "time": "2023-02-14T08:44:56+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v6.2.2", + "version": "v6.2.7", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "3ffeb31139b49bf6ef0bc09d1db95eac053388d1" + "reference": "404b307de426c1c488e5afad64403e5f145e82a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3ffeb31139b49bf6ef0bc09d1db95eac053388d1", - "reference": "3ffeb31139b49bf6ef0bc09d1db95eac053388d1", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/404b307de426c1c488e5afad64403e5f145e82a5", + "reference": "404b307de426c1c488e5afad64403e5f145e82a5", "shasum": "" }, "require": { @@ -4642,7 +4755,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.2" + "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.7" }, "funding": [ { @@ -4658,20 +4771,20 @@ "type": "tidelift" } ], - "time": "2022-12-14T16:11:27+00:00" + "time": "2023-02-14T08:44:56+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.2.0", + "version": "v3.2.1", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "0782b0b52a737a05b4383d0df35a474303cabdae" + "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0782b0b52a737a05b4383d0df35a474303cabdae", - "reference": "0782b0b52a737a05b4383d0df35a474303cabdae", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd", + "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd", "shasum": "" }, "require": { @@ -4721,7 +4834,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.0" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.1" }, "funding": [ { @@ -4737,20 +4850,20 @@ "type": "tidelift" } ], - "time": "2022-11-25T10:21:52+00:00" + "time": "2023-03-01T10:32:47+00:00" }, { "name": "symfony/finder", - "version": "v6.2.0", + "version": "v6.2.7", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "eb2355f69519e4ef33f1835bca4c935f5d42e570" + "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/eb2355f69519e4ef33f1835bca4c935f5d42e570", - "reference": "eb2355f69519e4ef33f1835bca4c935f5d42e570", + "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb", + "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb", "shasum": "" }, "require": { @@ -4785,7 +4898,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.2.0" + "source": "https://github.com/symfony/finder/tree/v6.2.7" }, "funding": [ { @@ -4801,20 +4914,20 @@ "type": "tidelift" } ], - "time": "2022-10-09T08:55:40+00:00" + "time": "2023-02-16T09:57:23+00:00" }, { "name": "symfony/http-foundation", - "version": "v6.2.2", + "version": "v6.2.7", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "ddf4dd35de1623e7c02013523e6c2137b67b636f" + "reference": "5fc3038d4a594223f9ea42e4e985548f3fcc9a3b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ddf4dd35de1623e7c02013523e6c2137b67b636f", - "reference": "ddf4dd35de1623e7c02013523e6c2137b67b636f", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5fc3038d4a594223f9ea42e4e985548f3fcc9a3b", + "reference": "5fc3038d4a594223f9ea42e4e985548f3fcc9a3b", "shasum": "" }, "require": { @@ -4863,7 +4976,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.2.2" + "source": "https://github.com/symfony/http-foundation/tree/v6.2.7" }, "funding": [ { @@ -4879,20 +4992,20 @@ "type": "tidelift" } ], - "time": "2022-12-14T16:11:27+00:00" + "time": "2023-02-21T10:54:55+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.2.2", + "version": "v6.2.7", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "860a0189969b755cd571709bd32313aa8599867a" + "reference": "ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/860a0189969b755cd571709bd32313aa8599867a", - "reference": "860a0189969b755cd571709bd32313aa8599867a", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd", + "reference": "ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd", "shasum": "" }, "require": { @@ -4901,7 +5014,7 @@ "symfony/deprecation-contracts": "^2.1|^3", "symfony/error-handler": "^6.1", "symfony/event-dispatcher": "^5.4|^6.0", - "symfony/http-foundation": "^5.4|^6.0", + "symfony/http-foundation": "^5.4.21|^6.2.7", "symfony/polyfill-ctype": "^1.8" }, "conflict": { @@ -4974,7 +5087,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.2.2" + "source": "https://github.com/symfony/http-kernel/tree/v6.2.7" }, "funding": [ { @@ -4990,20 +5103,20 @@ "type": "tidelift" } ], - "time": "2022-12-16T19:38:34+00:00" + "time": "2023-02-28T13:26:41+00:00" }, { "name": "symfony/mime", - "version": "v6.2.2", + "version": "v6.2.7", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "8c98bf40406e791043890a163f6f6599b9cfa1ed" + "reference": "62e341f80699badb0ad70b31149c8df89a2d778e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/8c98bf40406e791043890a163f6f6599b9cfa1ed", - "reference": "8c98bf40406e791043890a163f6f6599b9cfa1ed", + "url": "https://api.github.com/repos/symfony/mime/zipball/62e341f80699badb0ad70b31149c8df89a2d778e", + "reference": "62e341f80699badb0ad70b31149c8df89a2d778e", "shasum": "" }, "require": { @@ -5019,7 +5132,7 @@ "symfony/serializer": "<6.2" }, "require-dev": { - "egulias/email-validator": "^2.1.10|^3.1", + "egulias/email-validator": "^2.1.10|^3.1|^4", "league/html-to-markdown": "^5.0", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", "symfony/dependency-injection": "^5.4|^6.0", @@ -5057,7 +5170,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v6.2.2" + "source": "https://github.com/symfony/mime/tree/v6.2.7" }, "funding": [ { @@ -5073,7 +5186,7 @@ "type": "tidelift" } ], - "time": "2022-12-14T16:38:10+00:00" + "time": "2023-02-24T10:42:00+00:00" }, { "name": "symfony/polyfill-ctype", @@ -5651,97 +5764,18 @@ ], "time": "2022-11-03T14:55:06+00:00" }, - { - "name": "symfony/polyfill-php81", - "version": "v1.27.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a", - "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.27-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php81\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2022-11-03T14:55:06+00:00" - }, { "name": "symfony/process", - "version": "v6.2.0", + "version": "v6.2.7", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "ba6e55359f8f755fe996c58a81e00eaa67a35877" + "reference": "680e8a2ea6b3f87aecc07a6a65a203ae573d1902" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/ba6e55359f8f755fe996c58a81e00eaa67a35877", - "reference": "ba6e55359f8f755fe996c58a81e00eaa67a35877", + "url": "https://api.github.com/repos/symfony/process/zipball/680e8a2ea6b3f87aecc07a6a65a203ae573d1902", + "reference": "680e8a2ea6b3f87aecc07a6a65a203ae573d1902", "shasum": "" }, "require": { @@ -5773,7 +5807,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.2.0" + "source": "https://github.com/symfony/process/tree/v6.2.7" }, "funding": [ { @@ -5789,7 +5823,7 @@ "type": "tidelift" } ], - "time": "2022-11-02T09:08:04+00:00" + "time": "2023-02-24T10:42:00+00:00" }, { "name": "symfony/service-contracts", @@ -5876,16 +5910,16 @@ }, { "name": "symfony/string", - "version": "v6.2.2", + "version": "v6.2.7", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "863219fd713fa41cbcd285a79723f94672faff4d" + "reference": "67b8c1eec78296b85dc1c7d9743830160218993d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/863219fd713fa41cbcd285a79723f94672faff4d", - "reference": "863219fd713fa41cbcd285a79723f94672faff4d", + "url": "https://api.github.com/repos/symfony/string/zipball/67b8c1eec78296b85dc1c7d9743830160218993d", + "reference": "67b8c1eec78296b85dc1c7d9743830160218993d", "shasum": "" }, "require": { @@ -5942,7 +5976,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.2.2" + "source": "https://github.com/symfony/string/tree/v6.2.7" }, "funding": [ { @@ -5958,20 +5992,20 @@ "type": "tidelift" } ], - "time": "2022-12-14T16:11:27+00:00" + "time": "2023-02-24T10:42:00+00:00" }, { "name": "symfony/translation", - "version": "v6.2.2", + "version": "v6.2.7", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "3294288c335b6267eab14964bf2c46015663d93f" + "reference": "90db1c6138c90527917671cd9ffa9e8b359e3a73" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/3294288c335b6267eab14964bf2c46015663d93f", - "reference": "3294288c335b6267eab14964bf2c46015663d93f", + "url": "https://api.github.com/repos/symfony/translation/zipball/90db1c6138c90527917671cd9ffa9e8b359e3a73", + "reference": "90db1c6138c90527917671cd9ffa9e8b359e3a73", "shasum": "" }, "require": { @@ -6040,7 +6074,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v6.2.2" + "source": "https://github.com/symfony/translation/tree/v6.2.7" }, "funding": [ { @@ -6056,20 +6090,20 @@ "type": "tidelift" } ], - "time": "2022-12-13T18:04:17+00:00" + "time": "2023-02-24T10:42:00+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.2.0", + "version": "v3.2.1", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "68cce71402305a015f8c1589bfada1280dc64fe7" + "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/68cce71402305a015f8c1589bfada1280dc64fe7", - "reference": "68cce71402305a015f8c1589bfada1280dc64fe7", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dfec258b9dd17a6b24420d464c43bffe347441c8", + "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8", "shasum": "" }, "require": { @@ -6121,7 +6155,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.2.0" + "source": "https://github.com/symfony/translation-contracts/tree/v3.2.1" }, "funding": [ { @@ -6137,20 +6171,20 @@ "type": "tidelift" } ], - "time": "2022-11-25T10:21:52+00:00" + "time": "2023-03-01T10:32:47+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.2.2", + "version": "v6.2.7", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "6168f544827e897f708a684f75072a8c33a5e309" + "reference": "cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6168f544827e897f708a684f75072a8c33a5e309", - "reference": "6168f544827e897f708a684f75072a8c33a5e309", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e", + "reference": "cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e", "shasum": "" }, "require": { @@ -6209,7 +6243,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.2.2" + "source": "https://github.com/symfony/var-dumper/tree/v6.2.7" }, "funding": [ { @@ -6225,7 +6259,7 @@ "type": "tidelift" } ], - "time": "2022-12-14T16:11:27+00:00" + "time": "2023-02-24T10:42:00+00:00" }, { "name": "vlucas/phpdotenv", @@ -6445,21 +6479,21 @@ }, { "name": "zanysoft/laravel-zip", - "version": "2.0.3", + "version": "2.0.4", "source": { "type": "git", "url": "https://github.com/zanysoft/laravel-zip.git", - "reference": "8bdcb51f47b68f3ffa27f9cc5a66626db98c7318" + "reference": "04ed09db8ca799e088b3af183e6de50be8346bf4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zanysoft/laravel-zip/zipball/8bdcb51f47b68f3ffa27f9cc5a66626db98c7318", - "reference": "8bdcb51f47b68f3ffa27f9cc5a66626db98c7318", + "url": "https://api.github.com/repos/zanysoft/laravel-zip/zipball/04ed09db8ca799e088b3af183e6de50be8346bf4", + "reference": "04ed09db8ca799e088b3af183e6de50be8346bf4", "shasum": "" }, "require": { "ext-zip": "*", - "illuminate/support": "^7.0|^8.0|^9.0", + "illuminate/support": "^7.0|^8.0|^9.0|^10.0", "php": ">=7.4" }, "require-dev": { @@ -6511,38 +6545,38 @@ ], "support": { "issues": "https://github.com/zanysoft/laravel-zip/issues", - "source": "https://github.com/zanysoft/laravel-zip/tree/2.0.3" + "source": "https://github.com/zanysoft/laravel-zip/tree/2.0.4" }, - "time": "2022-11-08T12:03:57+00:00" + "time": "2023-02-16T05:33:35+00:00" } ], "packages-dev": [ { "name": "doctrine/instantiator", - "version": "1.4.1", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc" + "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc", - "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", + "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "php": "^8.1" }, "require-dev": { - "doctrine/coding-standard": "^9", + "doctrine/coding-standard": "^11", "ext-pdo": "*", "ext-phar": "*", - "phpbench/phpbench": "^0.16 || ^1", - "phpstan/phpstan": "^1.4", - "phpstan/phpstan-phpunit": "^1", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "vimeo/psalm": "^4.22" + "phpbench/phpbench": "^1.2", + "phpstan/phpstan": "^1.9.4", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5.27", + "vimeo/psalm": "^5.4" }, "type": "library", "autoload": { @@ -6569,7 +6603,7 @@ ], "support": { "issues": "https://github.com/doctrine/instantiator/issues", - "source": "https://github.com/doctrine/instantiator/tree/1.4.1" + "source": "https://github.com/doctrine/instantiator/tree/2.0.0" }, "funding": [ { @@ -6585,7 +6619,7 @@ "type": "tidelift" } ], - "time": "2022-03-03T08:28:38+00:00" + "time": "2022-12-30T00:23:10+00:00" }, { "name": "fakerphp/faker", @@ -6708,16 +6742,16 @@ }, { "name": "laravel/pint", - "version": "v1.3.0", + "version": "v1.6.0", "source": { "type": "git", "url": "https://github.com/laravel/pint.git", - "reference": "6a2c0927b4f6ad4eadb5a67fe3835fdad108949d" + "reference": "e48e3fadd7863d6b7d03464f5c4f211a828b890f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/pint/zipball/6a2c0927b4f6ad4eadb5a67fe3835fdad108949d", - "reference": "6a2c0927b4f6ad4eadb5a67fe3835fdad108949d", + "url": "https://api.github.com/repos/laravel/pint/zipball/e48e3fadd7863d6b7d03464f5c4f211a828b890f", + "reference": "e48e3fadd7863d6b7d03464f5c4f211a828b890f", "shasum": "" }, "require": { @@ -6725,16 +6759,16 @@ "ext-mbstring": "*", "ext-tokenizer": "*", "ext-xml": "*", - "php": "^8.0" + "php": "^8.1.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "~3.13.1", - "illuminate/view": "^9.32.0", - "laravel-zero/framework": "^9.2.0", + "friendsofphp/php-cs-fixer": "^3.14.4", + "illuminate/view": "^10.0.0", + "laravel-zero/framework": "^10.0.0", "mockery/mockery": "^1.5.1", - "nunomaduro/larastan": "^2.2.0", - "nunomaduro/termwind": "^1.14.0", - "pestphp/pest": "^1.22.1" + "nunomaduro/larastan": "^2.4.0", + "nunomaduro/termwind": "^1.15.1", + "pestphp/pest": "^1.22.4" }, "bin": [ "builds/pint" @@ -6770,7 +6804,7 @@ "issues": "https://github.com/laravel/pint/issues", "source": "https://github.com/laravel/pint" }, - "time": "2022-12-20T17:16:15+00:00" + "time": "2023-02-21T15:44:57+00:00" }, { "name": "mockery/mockery", @@ -6846,16 +6880,16 @@ }, { "name": "myclabs/deep-copy", - "version": "1.11.0", + "version": "1.11.1", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614" + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614", - "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", "shasum": "" }, "require": { @@ -6893,7 +6927,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0" + "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" }, "funding": [ { @@ -6901,20 +6935,20 @@ "type": "tidelift" } ], - "time": "2022-03-03T13:19:32+00:00" + "time": "2023-03-08T13:26:56+00:00" }, { "name": "nikic/php-parser", - "version": "v4.15.2", + "version": "v4.15.4", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc" + "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc", - "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290", + "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290", "shasum": "" }, "require": { @@ -6955,42 +6989,41 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.2" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4" }, - "time": "2022-11-12T15:38:23+00:00" + "time": "2023-03-05T19:49:14+00:00" }, { "name": "nunomaduro/larastan", - "version": "2.2.9", + "version": "2.5.1", "source": { "type": "git", "url": "https://github.com/nunomaduro/larastan.git", - "reference": "333e7915b984ce6606175749430081a372ead37e" + "reference": "072e2c9566ae000bf66c92384fc933b81885244b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/larastan/zipball/333e7915b984ce6606175749430081a372ead37e", - "reference": "333e7915b984ce6606175749430081a372ead37e", + "url": "https://api.github.com/repos/nunomaduro/larastan/zipball/072e2c9566ae000bf66c92384fc933b81885244b", + "reference": "072e2c9566ae000bf66c92384fc933b81885244b", "shasum": "" }, "require": { "ext-json": "*", - "illuminate/console": "^9", - "illuminate/container": "^9", - "illuminate/contracts": "^9", - "illuminate/database": "^9", - "illuminate/http": "^9", - "illuminate/pipeline": "^9", - "illuminate/support": "^9", - "mockery/mockery": "^1.4.4", + "illuminate/console": "^9.47.0 || ^10.0.0", + "illuminate/container": "^9.47.0 || ^10.0.0", + "illuminate/contracts": "^9.47.0 || ^10.0.0", + "illuminate/database": "^9.47.0 || ^10.0.0", + "illuminate/http": "^9.47.0 || ^10.0.0", + "illuminate/pipeline": "^9.47.0 || ^10.0.0", + "illuminate/support": "^9.47.0 || ^10.0.0", "php": "^8.0.2", - "phpmyadmin/sql-parser": "^5.5", - "phpstan/phpstan": "^1.9.0" + "phpmyadmin/sql-parser": "^5.6.0", + "phpstan/phpstan": "~1.10.3" }, "require-dev": { - "nikic/php-parser": "^4.13.2", - "orchestra/testbench": "^7.0.0", - "phpunit/phpunit": "^9.5.11" + "nikic/php-parser": "^4.15.2", + "orchestra/testbench": "^7.19.0 || ^8.0.0", + "phpunit/phpunit": "^9.5.27" }, "suggest": { "orchestra/testbench": "Using Larastan for analysing a package needs Testbench" @@ -7034,7 +7067,7 @@ ], "support": { "issues": "https://github.com/nunomaduro/larastan/issues", - "source": "https://github.com/nunomaduro/larastan/tree/2.2.9" + "source": "https://github.com/nunomaduro/larastan/tree/2.5.1" }, "funding": [ { @@ -7054,34 +7087,34 @@ "type": "patreon" } ], - "time": "2022-11-04T14:58:00+00:00" + "time": "2023-03-04T23:46:40+00:00" }, { "name": "pestphp/pest", - "version": "v1.22.3", + "version": "v1.22.5", "source": { "type": "git", "url": "https://github.com/pestphp/pest.git", - "reference": "b58a020423e9ad16c8bb8781927d516adae00da4" + "reference": "a1a0f049cddb7da097e7450e1a80da4d1a59571e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pestphp/pest/zipball/b58a020423e9ad16c8bb8781927d516adae00da4", - "reference": "b58a020423e9ad16c8bb8781927d516adae00da4", + "url": "https://api.github.com/repos/pestphp/pest/zipball/a1a0f049cddb7da097e7450e1a80da4d1a59571e", + "reference": "a1a0f049cddb7da097e7450e1a80da4d1a59571e", "shasum": "" }, "require": { "nunomaduro/collision": "^5.11.0|^6.3.0", "pestphp/pest-plugin": "^1.1.0", "php": "^7.3 || ^8.0", - "phpunit/phpunit": "^9.5.26" + "phpunit/phpunit": "^9.6.4" }, "require-dev": { - "illuminate/console": "^8.83.26", - "illuminate/support": "^8.83.26", + "illuminate/console": "^8.83.27", + "illuminate/support": "^8.83.27", "laravel/dusk": "^6.25.2", "pestphp/pest-dev-tools": "^1.0.0", - "pestphp/pest-plugin-parallel": "^1.2" + "pestphp/pest-plugin-parallel": "^1.2.1" }, "bin": [ "bin/pest" @@ -7135,7 +7168,7 @@ ], "support": { "issues": "https://github.com/pestphp/pest/issues", - "source": "https://github.com/pestphp/pest/tree/v1.22.3" + "source": "https://github.com/pestphp/pest/tree/v1.22.5" }, "funding": [ { @@ -7163,7 +7196,7 @@ "type": "patreon" } ], - "time": "2022-12-07T14:31:55+00:00" + "time": "2023-03-03T10:16:59+00:00" }, { "name": "pestphp/pest-plugin", @@ -7350,31 +7383,33 @@ }, { "name": "phpmyadmin/sql-parser", - "version": "5.5.0", + "version": "5.7.0", "source": { "type": "git", "url": "https://github.com/phpmyadmin/sql-parser.git", - "reference": "8ab99cd0007d880f49f5aa1807033dbfa21b1cb5" + "reference": "0f5895aab2b6002d00b6831b60983523dea30bff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpmyadmin/sql-parser/zipball/8ab99cd0007d880f49f5aa1807033dbfa21b1cb5", - "reference": "8ab99cd0007d880f49f5aa1807033dbfa21b1cb5", + "url": "https://api.github.com/repos/phpmyadmin/sql-parser/zipball/0f5895aab2b6002d00b6831b60983523dea30bff", + "reference": "0f5895aab2b6002d00b6831b60983523dea30bff", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0", - "symfony/polyfill-mbstring": "^1.3" + "php": "^7.2 || ^8.0", + "symfony/polyfill-mbstring": "^1.3", + "symfony/polyfill-php80": "^1.16" }, "conflict": { "phpmyadmin/motranslator": "<3.0" }, "require-dev": { + "phpbench/phpbench": "^1.1", "phpmyadmin/coding-standard": "^3.0", "phpmyadmin/motranslator": "^4.0 || ^5.0", "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.2", - "phpstan/phpstan-phpunit": "^1.0", + "phpstan/phpstan": "^1.9.12", + "phpstan/phpstan-phpunit": "^1.3.3", "phpunit/php-code-coverage": "*", "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", "psalm/plugin-phpunit": "^0.16.1", @@ -7413,26 +7448,38 @@ "analysis", "lexer", "parser", - "sql" + "query linter", + "sql", + "sql lexer", + "sql linter", + "sql parser", + "sql syntax highlighter", + "sql tokenizer" ], "support": { "issues": "https://github.com/phpmyadmin/sql-parser/issues", "source": "https://github.com/phpmyadmin/sql-parser" }, - "time": "2021-12-09T04:31:52+00:00" + "funding": [ + { + "url": "https://www.phpmyadmin.net/donate/", + "type": "other" + } + ], + "time": "2023-01-25T10:43:40+00:00" }, { "name": "phpstan/phpstan", - "version": "1.9.4", + "version": "1.10.6", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "d03bccee595e2146b7c9d174486b84f4dc61b0f2" + "reference": "50d089a3e0904b0fe7e2cf2d4fd37d427d64235a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d03bccee595e2146b7c9d174486b84f4dc61b0f2", - "reference": "d03bccee595e2146b7c9d174486b84f4dc61b0f2", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/50d089a3e0904b0fe7e2cf2d4fd37d427d64235a", + "reference": "50d089a3e0904b0fe7e2cf2d4fd37d427d64235a", "shasum": "" }, "require": { @@ -7462,7 +7509,7 @@ ], "support": { "issues": "https://github.com/phpstan/phpstan/issues", - "source": "https://github.com/phpstan/phpstan/tree/1.9.4" + "source": "https://github.com/phpstan/phpstan/tree/1.10.6" }, "funding": [ { @@ -7478,27 +7525,27 @@ "type": "tidelift" } ], - "time": "2022-12-17T13:33:52+00:00" + "time": "2023-03-09T16:55:12+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "9.2.22", + "version": "9.2.26", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "e4bf60d2220b4baaa0572986b5d69870226b06df" + "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e4bf60d2220b4baaa0572986b5d69870226b06df", - "reference": "e4bf60d2220b4baaa0572986b5d69870226b06df", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", + "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "ext-xmlwriter": "*", - "nikic/php-parser": "^4.14", + "nikic/php-parser": "^4.15", "php": ">=7.3", "phpunit/php-file-iterator": "^3.0.3", "phpunit/php-text-template": "^2.0.2", @@ -7513,8 +7560,8 @@ "phpunit/phpunit": "^9.3" }, "suggest": { - "ext-pcov": "*", - "ext-xdebug": "*" + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, "type": "library", "extra": { @@ -7547,7 +7594,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.22" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26" }, "funding": [ { @@ -7555,7 +7602,7 @@ "type": "github" } ], - "time": "2022-12-18T16:40:55+00:00" + "time": "2023-03-06T12:58:08+00:00" }, { "name": "phpunit/php-file-iterator", @@ -7800,20 +7847,20 @@ }, { "name": "phpunit/phpunit", - "version": "9.5.27", + "version": "9.6.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38" + "reference": "86e761949019ae83f49240b2f2123fb5ab3b2fc5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a2bc7ffdca99f92d959b3f2270529334030bba38", - "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/86e761949019ae83f49240b2f2123fb5ab3b2fc5", + "reference": "86e761949019ae83f49240b2f2123fb5ab3b2fc5", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.3.1", + "doctrine/instantiator": "^1.3.1 || ^2", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", @@ -7842,8 +7889,8 @@ "sebastian/version": "^3.0.2" }, "suggest": { - "ext-soap": "*", - "ext-xdebug": "*" + "ext-soap": "To be able to generate mocks based on WSDL files", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, "bin": [ "phpunit" @@ -7851,7 +7898,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.5-dev" + "dev-master": "9.6-dev" } }, "autoload": { @@ -7882,7 +7929,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.27" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.5" }, "funding": [ { @@ -7898,7 +7945,7 @@ "type": "tidelift" } ], - "time": "2022-12-09T07:31:23+00:00" + "time": "2023-03-09T06:34:10+00:00" }, { "name": "sebastian/cli-parser", @@ -8266,16 +8313,16 @@ }, { "name": "sebastian/environment", - "version": "5.1.4", + "version": "5.1.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7" + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7", - "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", "shasum": "" }, "require": { @@ -8317,7 +8364,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", - "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4" + "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" }, "funding": [ { @@ -8325,7 +8372,7 @@ "type": "github" } ], - "time": "2022-04-03T09:37:03+00:00" + "time": "2023-02-03T06:03:51+00:00" }, { "name": "sebastian/exporter", @@ -8639,16 +8686,16 @@ }, { "name": "sebastian/recursion-context", - "version": "4.0.4", + "version": "4.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172" + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172", - "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", "shasum": "" }, "require": { @@ -8687,10 +8734,10 @@ } ], "description": "Provides functionality to recursively process PHP variables", - "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "homepage": "https://github.com/sebastianbergmann/recursion-context", "support": { "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4" + "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" }, "funding": [ { @@ -8698,7 +8745,7 @@ "type": "github" } ], - "time": "2020-10-26T13:17:30+00:00" + "time": "2023-02-03T06:07:39+00:00" }, { "name": "sebastian/resource-operations", @@ -8757,16 +8804,16 @@ }, { "name": "sebastian/type", - "version": "3.2.0", + "version": "3.2.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e" + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e", - "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", "shasum": "" }, "require": { @@ -8801,7 +8848,7 @@ "homepage": "https://github.com/sebastianbergmann/type", "support": { "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/3.2.0" + "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" }, "funding": [ { @@ -8809,7 +8856,7 @@ "type": "github" } ], - "time": "2022-09-12T14:47:03+00:00" + "time": "2023-02-03T06:13:03+00:00" }, { "name": "sebastian/version", diff --git a/config/static-data.php b/config/static-data.php index 9c29314..ec90e0a 100644 --- a/config/static-data.php +++ b/config/static-data.php @@ -90,6 +90,10 @@ 'Platinum II', 'Platinum III', 'Platinum IV', + 'Emerald I', + 'Emerald II', + 'Emerald III', + 'Emerald IV', 'Diamond I', 'Diamond II', 'Diamond III', diff --git a/database/migrations/03_create_types_table.php b/database/migrations/03_create_types_table.php index ed5ef43..274bef2 100644 --- a/database/migrations/03_create_types_table.php +++ b/database/migrations/03_create_types_table.php @@ -8,8 +8,6 @@ { /** * Run the migrations. - * - * @return void */ public function up(): void { @@ -27,8 +25,6 @@ public function up(): void /** * Reverse the migrations. - * - * @return void */ public function down(): void { diff --git a/database/migrations/04_create_assignments_table.php b/database/migrations/04_create_assignments_table.php index 8052763..4d8c51e 100644 --- a/database/migrations/04_create_assignments_table.php +++ b/database/migrations/04_create_assignments_table.php @@ -8,8 +8,6 @@ { /** * Run the migrations. - * - * @return void */ public function up(): void { @@ -33,8 +31,6 @@ public function up(): void /** * Reverse the migrations. - * - * @return void */ public function down(): void { diff --git a/database/migrations/05_create_game_user_table.php b/database/migrations/05_create_game_user_table.php index 2bf8bdd..a9808f5 100644 --- a/database/migrations/05_create_game_user_table.php +++ b/database/migrations/05_create_game_user_table.php @@ -8,8 +8,6 @@ { /** * Run the migrations. - * - * @return void */ public function up(): void { @@ -32,8 +30,6 @@ public function up(): void /** * Reverse the migrations. - * - * @return void */ public function down(): void { diff --git a/database/migrations/06_create_games_entry_apex.php b/database/migrations/06_create_games_entry_apex.php index 598cba6..7d05ab4 100644 --- a/database/migrations/06_create_games_entry_apex.php +++ b/database/migrations/06_create_games_entry_apex.php @@ -19,8 +19,6 @@ public function up(): void /** * Reverse the migrations. - * - * @return void */ public function down(): void { diff --git a/database/migrations/07_create_games_entry_lol.php b/database/migrations/07_create_games_entry_lol.php index 26ea3d8..b6a56d6 100644 --- a/database/migrations/07_create_games_entry_lol.php +++ b/database/migrations/07_create_games_entry_lol.php @@ -19,8 +19,6 @@ public function up(): void /** * Reverse the migrations. - * - * @return void */ public function down(): void { diff --git a/database/migrations/08_create_types_entry_rank_group.php b/database/migrations/08_create_types_entry_rank_group.php index d47f9f4..38507f4 100644 --- a/database/migrations/08_create_types_entry_rank_group.php +++ b/database/migrations/08_create_types_entry_rank_group.php @@ -19,8 +19,6 @@ public function up(): void /** * Reverse the migrations. - * - * @return void */ public function down(): void { diff --git a/database/migrations/09_create_types_entry_rank_solo.php b/database/migrations/09_create_types_entry_rank_solo.php index 7eedc69..4ee9e06 100644 --- a/database/migrations/09_create_types_entry_rank_solo.php +++ b/database/migrations/09_create_types_entry_rank_solo.php @@ -19,8 +19,6 @@ public function up(): void /** * Reverse the migrations. - * - * @return void */ public function down(): void { diff --git a/database/migrations/10_create_types_entry_character.php b/database/migrations/10_create_types_entry_character.php index 144d9df..0bd447f 100644 --- a/database/migrations/10_create_types_entry_character.php +++ b/database/migrations/10_create_types_entry_character.php @@ -19,8 +19,6 @@ public function up(): void /** * Reverse the migrations. - * - * @return void */ public function down(): void { diff --git a/database/migrations/11_create_types_entry_position.php b/database/migrations/11_create_types_entry_position.php index 75fdf23..9ee117e 100644 --- a/database/migrations/11_create_types_entry_position.php +++ b/database/migrations/11_create_types_entry_position.php @@ -19,8 +19,6 @@ public function up(): void /** * Reverse the migrations. - * - * @return void */ public function down(): void { diff --git a/database/migrations/12_create_games_entry_tft.php b/database/migrations/12_create_games_entry_tft.php index 497d12a..14bc7bc 100644 --- a/database/migrations/12_create_games_entry_tft.php +++ b/database/migrations/12_create_games_entry_tft.php @@ -19,8 +19,6 @@ public function up(): void /** * Reverse the migrations. - * - * @return void */ public function down(): void { diff --git a/database/migrations/13_create_types_entry_duo.php b/database/migrations/13_create_types_entry_duo.php index 6e9d73d..3748f66 100644 --- a/database/migrations/13_create_types_entry_duo.php +++ b/database/migrations/13_create_types_entry_duo.php @@ -19,8 +19,6 @@ public function up(): void /** * Reverse the migrations. - * - * @return void */ public function down(): void { diff --git a/phpstan.neon b/phpstan.neon index 9fe6f83..260acf6 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -9,3 +9,4 @@ parameters: scanDirectories: - vendor/planetteamspeak checkMissingIterableValueType: false + treatPhpDocTypesAsCertain: false