diff --git a/app/Http/Livewire/Profile/Meetups.php b/app/Http/Livewire/Profile/Meetups.php index c7279d12..1edcbf44 100644 --- a/app/Http/Livewire/Profile/Meetups.php +++ b/app/Http/Livewire/Profile/Meetups.php @@ -53,7 +53,19 @@ class Meetups extends Component $this->myMeetupNames = auth() ->user() ->meetups() - ->pluck('meetups.name', 'meetups.id') + ->with([ + 'city.country' + ]) + ->select('meetups.id', 'meetups.city_id', 'meetups.name', 'meetups.slug') + ->get() + ->map(fn($meetup) => [ + 'id' => $meetup->id, + 'name' => $meetup->name, + 'link' => route('meetup.landing', [ + 'country' => $meetup->city->country->code, + 'meetup' => $meetup, + ]) + ]) ->toArray(); if (count($this->myMeetups) > 0) { $this->hasMeetups = true; @@ -80,11 +92,6 @@ class Meetups extends Component ->get(); } - public function render() - { - return view('livewire.profile.meetups'); - } - public function signUpForMeetup($id) { $user = auth()->user(); @@ -108,4 +115,9 @@ class Meetups extends Component $this->notification() ->success(__('Saved.')); } + + public function render() + { + return view('livewire.profile.meetups'); + } } diff --git a/composer.lock b/composer.lock index 012070ba..2dda83b6 100644 --- a/composer.lock +++ b/composer.lock @@ -848,16 +848,16 @@ }, { "name": "doctrine/dbal", - "version": "3.6.5", + "version": "3.6.6", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "96d5a70fd91efdcec81fc46316efc5bf3da17ddf" + "reference": "63646ffd71d1676d2f747f871be31b7e921c7864" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/96d5a70fd91efdcec81fc46316efc5bf3da17ddf", - "reference": "96d5a70fd91efdcec81fc46316efc5bf3da17ddf", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/63646ffd71d1676d2f747f871be31b7e921c7864", + "reference": "63646ffd71d1676d2f747f871be31b7e921c7864", "shasum": "" }, "require": { @@ -873,10 +873,11 @@ "doctrine/coding-standard": "12.0.0", "fig/log-test": "^1", "jetbrains/phpstorm-stubs": "2023.1", - "phpstan/phpstan": "1.10.21", + "phpstan/phpstan": "1.10.29", "phpstan/phpstan-strict-rules": "^1.5", "phpunit/phpunit": "9.6.9", "psalm/plugin-phpunit": "0.18.4", + "slevomat/coding-standard": "8.13.1", "squizlabs/php_codesniffer": "3.7.2", "symfony/cache": "^5.4|^6.0", "symfony/console": "^4.4|^5.4|^6.0", @@ -940,7 +941,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.6.5" + "source": "https://github.com/doctrine/dbal/tree/3.6.6" }, "funding": [ { @@ -956,7 +957,7 @@ "type": "tidelift" } ], - "time": "2023-07-17T09:15:50+00:00" + "time": "2023-08-17T05:38:17+00:00" }, { "name": "doctrine/deprecations", @@ -1266,16 +1267,16 @@ }, { "name": "dragonmantank/cron-expression", - "version": "v3.3.2", + "version": "v3.3.3", "source": { "type": "git", "url": "https://github.com/dragonmantank/cron-expression.git", - "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8" + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8", - "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", "shasum": "" }, "require": { @@ -1315,7 +1316,7 @@ ], "support": { "issues": "https://github.com/dragonmantank/cron-expression/issues", - "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2" + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3" }, "funding": [ { @@ -1323,7 +1324,7 @@ "type": "github" } ], - "time": "2022-09-10T18:51:20+00:00" + "time": "2023-08-10T19:36:49+00:00" }, { "name": "ebess/advanced-nova-media-library", @@ -1976,16 +1977,16 @@ }, { "name": "guzzlehttp/promises", - "version": "2.0.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "3a494dc7dc1d7d12e511890177ae2d0e6c107da6" + "reference": "111166291a0f8130081195ac4556a5587d7f1b5d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/3a494dc7dc1d7d12e511890177ae2d0e6c107da6", - "reference": "3a494dc7dc1d7d12e511890177ae2d0e6c107da6", + "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d", + "reference": "111166291a0f8130081195ac4556a5587d7f1b5d", "shasum": "" }, "require": { @@ -2039,7 +2040,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.0.0" + "source": "https://github.com/guzzle/promises/tree/2.0.1" }, "funding": [ { @@ -2055,20 +2056,20 @@ "type": "tidelift" } ], - "time": "2023-05-21T13:50:22+00:00" + "time": "2023-08-03T15:11:55+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.5.0", + "version": "2.6.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "b635f279edd83fc275f822a1188157ffea568ff6" + "reference": "8bd7c33a0734ae1c5d074360512beb716bef3f77" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6", - "reference": "b635f279edd83fc275f822a1188157ffea568ff6", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/8bd7c33a0734ae1c5d074360512beb716bef3f77", + "reference": "8bd7c33a0734ae1c5d074360512beb716bef3f77", "shasum": "" }, "require": { @@ -2155,7 +2156,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.5.0" + "source": "https://github.com/guzzle/psr7/tree/2.6.0" }, "funding": [ { @@ -2171,7 +2172,7 @@ "type": "tidelift" } ], - "time": "2023-04-17T16:11:26+00:00" + "time": "2023-08-03T15:06:02+00:00" }, { "name": "guzzlehttp/uri-template", @@ -2951,16 +2952,16 @@ }, { "name": "laravel/framework", - "version": "v10.17.0", + "version": "v10.19.0", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "a0e3f5ac5b6258f6ede9a2a2c5cc3820baea24a2" + "reference": "b8557e4a708a1bd2bc8229bd53feecfa2ac1c6fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/a0e3f5ac5b6258f6ede9a2a2c5cc3820baea24a2", - "reference": "a0e3f5ac5b6258f6ede9a2a2c5cc3820baea24a2", + "url": "https://api.github.com/repos/laravel/framework/zipball/b8557e4a708a1bd2bc8229bd53feecfa2ac1c6fb", + "reference": "b8557e4a708a1bd2bc8229bd53feecfa2ac1c6fb", "shasum": "" }, "require": { @@ -3147,20 +3148,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2023-08-01T14:08:45+00:00" + "time": "2023-08-15T13:42:57+00:00" }, { "name": "laravel/horizon", - "version": "v5.19.0", + "version": "v5.19.1", "source": { "type": "git", "url": "https://github.com/laravel/horizon.git", - "reference": "1c9b6b3068c64f50ae99a96ca662206c6078a1c5" + "reference": "1987f98084bc3119f78ec3da6283821a2c1acf63" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/horizon/zipball/1c9b6b3068c64f50ae99a96ca662206c6078a1c5", - "reference": "1c9b6b3068c64f50ae99a96ca662206c6078a1c5", + "url": "https://api.github.com/repos/laravel/horizon/zipball/1987f98084bc3119f78ec3da6283821a2c1acf63", + "reference": "1987f98084bc3119f78ec3da6283821a2c1acf63", "shasum": "" }, "require": { @@ -3223,9 +3224,9 @@ ], "support": { "issues": "https://github.com/laravel/horizon/issues", - "source": "https://github.com/laravel/horizon/tree/v5.19.0" + "source": "https://github.com/laravel/horizon/tree/v5.19.1" }, - "time": "2023-07-14T14:18:51+00:00" + "time": "2023-08-09T13:18:44+00:00" }, { "name": "laravel/jetstream", @@ -3464,21 +3465,21 @@ }, { "name": "laravel/prompts", - "version": "v0.1.1", + "version": "v0.1.5", "source": { "type": "git", "url": "https://github.com/laravel/prompts.git", - "reference": "309b30157090a63c40152aa912d198d6aeb60ea6" + "reference": "d880a909df144a4bf5760ebd09aba114f79d9adc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/prompts/zipball/309b30157090a63c40152aa912d198d6aeb60ea6", - "reference": "309b30157090a63c40152aa912d198d6aeb60ea6", + "url": "https://api.github.com/repos/laravel/prompts/zipball/d880a909df144a4bf5760ebd09aba114f79d9adc", + "reference": "d880a909df144a4bf5760ebd09aba114f79d9adc", "shasum": "" }, "require": { "ext-mbstring": "*", - "illuminate/collections": "^10.0", + "illuminate/collections": "^10.0|^11.0", "php": "^8.1", "symfony/console": "^6.2" }, @@ -3506,9 +3507,9 @@ ], "support": { "issues": "https://github.com/laravel/prompts/issues", - "source": "https://github.com/laravel/prompts/tree/v0.1.1" + "source": "https://github.com/laravel/prompts/tree/v0.1.5" }, - "time": "2023-07-31T15:03:02+00:00" + "time": "2023-08-15T14:29:44+00:00" }, { "name": "laravel/sanctum", @@ -4332,26 +4333,26 @@ }, { "name": "league/mime-type-detection", - "version": "1.11.0", + "version": "1.13.0", "source": { "type": "git", "url": "https://github.com/thephpleague/mime-type-detection.git", - "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" + "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", - "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96", + "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96", "shasum": "" }, "require": { "ext-fileinfo": "*", - "php": "^7.2 || ^8.0" + "php": "^7.4 || ^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.2", "phpstan/phpstan": "^0.12.68", - "phpunit/phpunit": "^8.5.8 || ^9.3" + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" }, "type": "library", "autoload": { @@ -4372,7 +4373,7 @@ "description": "Mime-type detection for Flysystem", "support": { "issues": "https://github.com/thephpleague/mime-type-detection/issues", - "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0" + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0" }, "funding": [ { @@ -4384,7 +4385,7 @@ "type": "tidelift" } ], - "time": "2022-04-17T13:12:02+00:00" + "time": "2023-08-05T12:09:49+00:00" }, { "name": "league/oauth1-client", @@ -4635,16 +4636,16 @@ }, { "name": "livewire/livewire", - "version": "v2.12.5", + "version": "v2.12.6", "source": { "type": "git", "url": "https://github.com/livewire/livewire.git", - "reference": "96a249f5ab51d8377817d802f91d1e440869c1d6" + "reference": "7d3a57b3193299cf1a0639a3935c696f4da2cf92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/livewire/livewire/zipball/96a249f5ab51d8377817d802f91d1e440869c1d6", - "reference": "96a249f5ab51d8377817d802f91d1e440869c1d6", + "url": "https://api.github.com/repos/livewire/livewire/zipball/7d3a57b3193299cf1a0639a3935c696f4da2cf92", + "reference": "7d3a57b3193299cf1a0639a3935c696f4da2cf92", "shasum": "" }, "require": { @@ -4696,7 +4697,7 @@ "description": "A front-end framework for Laravel.", "support": { "issues": "https://github.com/livewire/livewire/issues", - "source": "https://github.com/livewire/livewire/tree/v2.12.5" + "source": "https://github.com/livewire/livewire/tree/v2.12.6" }, "funding": [ { @@ -4704,7 +4705,7 @@ "type": "github" } ], - "time": "2023-08-02T06:31:31+00:00" + "time": "2023-08-11T04:02:34+00:00" }, { "name": "maatwebsite/excel", @@ -5276,25 +5277,29 @@ }, { "name": "nesbot/carbon", - "version": "2.68.1", + "version": "2.69.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da" + "reference": "4308217830e4ca445583a37d1bf4aff4153fa81c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4f991ed2a403c85efbc4f23eb4030063fdbe01da", - "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4308217830e4ca445583a37d1bf4aff4153fa81c", + "reference": "4308217830e4ca445583a37d1bf4aff4153fa81c", "shasum": "" }, "require": { "ext-json": "*", "php": "^7.1.8 || ^8.0", + "psr/clock": "^1.0", "symfony/polyfill-mbstring": "^1.0", "symfony/polyfill-php80": "^1.16", "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" }, + "provide": { + "psr/clock-implementation": "1.0" + }, "require-dev": { "doctrine/dbal": "^2.0 || ^3.1.4", "doctrine/orm": "^2.7", @@ -5374,25 +5379,25 @@ "type": "tidelift" } ], - "time": "2023-06-20T18:29:04+00:00" + "time": "2023-08-03T09:00:52+00:00" }, { "name": "nette/schema", - "version": "v1.2.3", + "version": "v1.2.4", "source": { "type": "git", "url": "https://github.com/nette/schema.git", - "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f" + "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", - "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", + "url": "https://api.github.com/repos/nette/schema/zipball/c9ff517a53903b3d4e29ec547fb20feecb05b8ab", + "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab", "shasum": "" }, "require": { "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", - "php": ">=7.1 <8.3" + "php": "7.1 - 8.3" }, "require-dev": { "nette/tester": "^2.3 || ^2.4", @@ -5434,9 +5439,9 @@ ], "support": { "issues": "https://github.com/nette/schema/issues", - "source": "https://github.com/nette/schema/tree/v1.2.3" + "source": "https://github.com/nette/schema/tree/v1.2.4" }, - "time": "2022-10-13T01:24:26+00:00" + "time": "2023-08-05T18:56:25+00:00" }, { "name": "nette/utils", @@ -5527,16 +5532,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.16.0", + "version": "v4.17.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "19526a33fb561ef417e822e85f08a00db4059c17" + "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/19526a33fb561ef417e822e85f08a00db4059c17", - "reference": "19526a33fb561ef417e822e85f08a00db4059c17", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", + "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", "shasum": "" }, "require": { @@ -5577,9 +5582,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.16.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1" }, - "time": "2023-06-25T14:52:30+00:00" + "time": "2023-08-13T19:53:39+00:00" }, { "name": "nova-kit/nova-packages-tool", @@ -5986,16 +5991,16 @@ }, { "name": "openspout/openspout", - "version": "v4.15.0", + "version": "v4.15.1", "source": { "type": "git", "url": "https://github.com/openspout/openspout.git", - "reference": "907a2ff042741b1f25b6e636d18ce9d7fc4c8333" + "reference": "ef5396bfd44b3dfa092e78458966d25c7a2c931a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/openspout/openspout/zipball/907a2ff042741b1f25b6e636d18ce9d7fc4c8333", - "reference": "907a2ff042741b1f25b6e636d18ce9d7fc4c8333", + "url": "https://api.github.com/repos/openspout/openspout/zipball/ef5396bfd44b3dfa092e78458966d25c7a2c931a", + "reference": "ef5396bfd44b3dfa092e78458966d25c7a2c931a", "shasum": "" }, "require": { @@ -6063,7 +6068,7 @@ ], "support": { "issues": "https://github.com/openspout/openspout/issues", - "source": "https://github.com/openspout/openspout/tree/v4.15.0" + "source": "https://github.com/openspout/openspout/tree/v4.15.1" }, "funding": [ { @@ -6075,7 +6080,7 @@ "type": "github" } ], - "time": "2023-06-19T07:48:22+00:00" + "time": "2023-08-11T08:32:26+00:00" }, { "name": "paragonie/ciphersweet", @@ -7147,6 +7152,54 @@ }, "time": "2021-02-03T23:26:27+00:00" }, + { + "name": "psr/clock", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "support": { + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" + }, + "time": "2022-11-25T14:36:26+00:00" + }, { "name": "psr/container", "version": "2.0.2", @@ -7771,16 +7824,16 @@ }, { "name": "ralphjsmit/laravel-helpers", - "version": "1.7.0", + "version": "1.8.1", "source": { "type": "git", "url": "https://github.com/ralphjsmit/laravel-helpers.git", - "reference": "27b3a410b5055846eec0c98ceef99490e6465489" + "reference": "031a6f97499f52f7e678947c7948870c3a712aba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ralphjsmit/laravel-helpers/zipball/27b3a410b5055846eec0c98ceef99490e6465489", - "reference": "27b3a410b5055846eec0c98ceef99490e6465489", + "url": "https://api.github.com/repos/ralphjsmit/laravel-helpers/zipball/031a6f97499f52f7e678947c7948870c3a712aba", + "reference": "031a6f97499f52f7e678947c7948870c3a712aba", "shasum": "" }, "require": { @@ -7842,22 +7895,22 @@ ], "support": { "issues": "https://github.com/ralphjsmit/laravel-helpers/issues", - "source": "https://github.com/ralphjsmit/laravel-helpers/tree/1.7.0" + "source": "https://github.com/ralphjsmit/laravel-helpers/tree/1.8.1" }, - "time": "2023-02-17T17:30:22+00:00" + "time": "2023-08-03T09:01:24+00:00" }, { "name": "ralphjsmit/laravel-seo", - "version": "1.4.0", + "version": "1.4.1", "source": { "type": "git", "url": "https://github.com/ralphjsmit/laravel-seo.git", - "reference": "3fdd02b537997d5bc7fcb4ba666758bc424b31db" + "reference": "e1769c1f23964d8464f3ea789a038f790f8ce91e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ralphjsmit/laravel-seo/zipball/3fdd02b537997d5bc7fcb4ba666758bc424b31db", - "reference": "3fdd02b537997d5bc7fcb4ba666758bc424b31db", + "url": "https://api.github.com/repos/ralphjsmit/laravel-seo/zipball/e1769c1f23964d8464f3ea789a038f790f8ce91e", + "reference": "e1769c1f23964d8464f3ea789a038f790f8ce91e", "shasum": "" }, "require": { @@ -7916,27 +7969,27 @@ ], "support": { "issues": "https://github.com/ralphjsmit/laravel-seo/issues", - "source": "https://github.com/ralphjsmit/laravel-seo/tree/1.4.0" + "source": "https://github.com/ralphjsmit/laravel-seo/tree/1.4.1" }, - "time": "2023-04-22T13:07:40+00:00" + "time": "2023-08-12T15:48:26+00:00" }, { "name": "ralphjsmit/livewire-urls", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/ralphjsmit/livewire-urls.git", - "reference": "5600447be283ab6381ddaaf8b77bf0fa76677c5e" + "reference": "53cb46b4e3350a2f4d6f3d05f2bffe8d04d701c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ralphjsmit/livewire-urls/zipball/5600447be283ab6381ddaaf8b77bf0fa76677c5e", - "reference": "5600447be283ab6381ddaaf8b77bf0fa76677c5e", + "url": "https://api.github.com/repos/ralphjsmit/livewire-urls/zipball/53cb46b4e3350a2f4d6f3d05f2bffe8d04d701c9", + "reference": "53cb46b4e3350a2f4d6f3d05f2bffe8d04d701c9", "shasum": "" }, "require": { "illuminate/contracts": "^8.83|^9.0|^10.0", - "livewire/livewire": "^2.10", + "livewire/livewire": "^2.10|^3.0@beta", "php": "^8.0", "spatie/laravel-package-tools": "^1.9.2" }, @@ -7986,9 +8039,9 @@ ], "support": { "issues": "https://github.com/ralphjsmit/livewire-urls/issues", - "source": "https://github.com/ralphjsmit/livewire-urls/tree/1.2.0" + "source": "https://github.com/ralphjsmit/livewire-urls/tree/1.3.0" }, - "time": "2023-02-17T17:40:53+00:00" + "time": "2023-08-19T13:25:27+00:00" }, { "name": "ramsey/collection", @@ -8472,16 +8525,16 @@ }, { "name": "sentry/sentry-laravel", - "version": "3.7.1", + "version": "3.7.3", "source": { "type": "git", "url": "https://github.com/getsentry/sentry-laravel.git", - "reference": "d1b21a9552db12016d3aeb15f6e6188a03a5dd87" + "reference": "2aee4ad217be8ef04ffcde6e9f7dd17af5a3b0bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/d1b21a9552db12016d3aeb15f6e6188a03a5dd87", - "reference": "d1b21a9552db12016d3aeb15f6e6188a03a5dd87", + "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/2aee4ad217be8ef04ffcde6e9f7dd17af5a3b0bf", + "reference": "2aee4ad217be8ef04ffcde6e9f7dd17af5a3b0bf", "shasum": "" }, "require": { @@ -8497,6 +8550,7 @@ "laravel/framework": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0", "mockery/mockery": "^1.3", "orchestra/testbench": "^4.7 | ^5.1 | ^6.0 | ^7.0 | ^8.0", + "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^8.4 | ^9.3" }, "type": "library", @@ -8546,7 +8600,7 @@ ], "support": { "issues": "https://github.com/getsentry/sentry-laravel/issues", - "source": "https://github.com/getsentry/sentry-laravel/tree/3.7.1" + "source": "https://github.com/getsentry/sentry-laravel/tree/3.7.3" }, "funding": [ { @@ -8558,7 +8612,7 @@ "type": "custom" } ], - "time": "2023-08-01T10:02:58+00:00" + "time": "2023-08-03T10:10:23+00:00" }, { "name": "simplesoftwareio/simple-qrcode", @@ -9232,16 +9286,16 @@ }, { "name": "spatie/laravel-ciphersweet", - "version": "1.3.0", + "version": "1.4.1", "source": { "type": "git", "url": "https://github.com/spatie/laravel-ciphersweet.git", - "reference": "6a1f2c4382341d816c73a4a20a254d8e5974b8ff" + "reference": "82f9252743a69cc557b581f6f3627b63fef2e309" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-ciphersweet/zipball/6a1f2c4382341d816c73a4a20a254d8e5974b8ff", - "reference": "6a1f2c4382341d816c73a4a20a254d8e5974b8ff", + "url": "https://api.github.com/repos/spatie/laravel-ciphersweet/zipball/82f9252743a69cc557b581f6f3627b63fef2e309", + "reference": "82f9252743a69cc557b581f6f3627b63fef2e309", "shasum": "" }, "require": { @@ -9298,9 +9352,9 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/laravel-ciphersweet/tree/1.3.0" + "source": "https://github.com/spatie/laravel-ciphersweet/tree/1.4.1" }, - "time": "2023-07-11T12:43:24+00:00" + "time": "2023-08-14T11:02:35+00:00" }, { "name": "spatie/laravel-comments", @@ -9496,30 +9550,29 @@ }, { "name": "spatie/laravel-feed", - "version": "4.2.1", + "version": "4.3.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-feed.git", - "reference": "0b9b7df3f716c6067b082cd6a985126c2189a6c4" + "reference": "1cf06a43b4ee0fdeb919983a76de68467ccdb844" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-feed/zipball/0b9b7df3f716c6067b082cd6a985126c2189a6c4", - "reference": "0b9b7df3f716c6067b082cd6a985126c2189a6c4", + "url": "https://api.github.com/repos/spatie/laravel-feed/zipball/1cf06a43b4ee0fdeb919983a76de68467ccdb844", + "reference": "1cf06a43b4ee0fdeb919983a76de68467ccdb844", "shasum": "" }, "require": { - "illuminate/contracts": "^8.0|^9.0|^10.0", - "illuminate/http": "^8.0|^9.0|^10.0", - "illuminate/support": "^8.0|^9.0|^10.0", + "illuminate/contracts": "^10.0", + "illuminate/http": "^10.0", + "illuminate/support": "^10.0", "php": "^8.0", - "spatie/laravel-package-tools": "^1.9" + "spatie/laravel-package-tools": "^1.15" }, "require-dev": { - "orchestra/testbench": "^6.23|^7.0|^8.0", - "pestphp/pest": "^1.22", - "phpunit/phpunit": "^9.5", - "spatie/pest-plugin-snapshots": "^1.1", + "orchestra/testbench": "^8.0", + "pestphp/pest": "^2.0", + "spatie/pest-plugin-snapshots": "^2.0", "spatie/test-time": "^1.2" }, "type": "library", @@ -9573,7 +9626,7 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/laravel-feed/tree/4.2.1" + "source": "https://github.com/spatie/laravel-feed/tree/4.3.0" }, "funding": [ { @@ -9585,7 +9638,7 @@ "type": "github" } ], - "time": "2023-01-25T09:39:38+00:00" + "time": "2023-08-07T14:46:53+00:00" }, { "name": "spatie/laravel-google-fonts", @@ -9670,16 +9723,16 @@ }, { "name": "spatie/laravel-markdown", - "version": "2.3.1", + "version": "2.4.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-markdown.git", - "reference": "1cdde7aafd638c6df2ee12868635399968035b08" + "reference": "38d11c666ccdbf111535677c1d927b349b64aca4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-markdown/zipball/1cdde7aafd638c6df2ee12868635399968035b08", - "reference": "1cdde7aafd638c6df2ee12868635399968035b08", + "url": "https://api.github.com/repos/spatie/laravel-markdown/zipball/38d11c666ccdbf111535677c1d927b349b64aca4", + "reference": "38d11c666ccdbf111535677c1d927b349b64aca4", "shasum": "" }, "require": { @@ -9734,7 +9787,7 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/laravel-markdown/tree/2.3.1" + "source": "https://github.com/spatie/laravel-markdown/tree/2.4.0" }, "funding": [ { @@ -9742,20 +9795,20 @@ "type": "github" } ], - "time": "2023-05-05T08:09:13+00:00" + "time": "2023-08-17T06:59:15+00:00" }, { "name": "spatie/laravel-medialibrary", - "version": "10.11.2", + "version": "10.11.3", "source": { "type": "git", "url": "https://github.com/spatie/laravel-medialibrary.git", - "reference": "bac32801073bd9446277cdeb174cf4327ea28aef" + "reference": "293a066890e10c951ff29bc76bfa026a60034edc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/bac32801073bd9446277cdeb174cf4327ea28aef", - "reference": "bac32801073bd9446277cdeb174cf4327ea28aef", + "url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/293a066890e10c951ff29bc76bfa026a60034edc", + "reference": "293a066890e10c951ff29bc76bfa026a60034edc", "shasum": "" }, "require": { @@ -9768,7 +9821,6 @@ "illuminate/database": "^9.18|^10.0", "illuminate/pipeline": "^9.18|^10.0", "illuminate/support": "^9.18|^10.0", - "intervention/image": "^2.7", "maennchen/zipstream-php": "^2.0|^3.0", "php": "^8.0", "spatie/image": "^2.2.7", @@ -9839,7 +9891,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-medialibrary/issues", - "source": "https://github.com/spatie/laravel-medialibrary/tree/10.11.2" + "source": "https://github.com/spatie/laravel-medialibrary/tree/10.11.3" }, "funding": [ { @@ -9851,7 +9903,7 @@ "type": "github" } ], - "time": "2023-07-27T08:00:59+00:00" + "time": "2023-08-07T07:30:22+00:00" }, { "name": "spatie/laravel-model-status", @@ -9999,16 +10051,16 @@ }, { "name": "spatie/laravel-package-tools", - "version": "1.15.0", + "version": "1.16.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-package-tools.git", - "reference": "efab1844b8826443135201c4443690f032c3d533" + "reference": "38fe533e93f86a1b2fb1000bf7df09c4748e6458" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/efab1844b8826443135201c4443690f032c3d533", - "reference": "efab1844b8826443135201c4443690f032c3d533", + "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/38fe533e93f86a1b2fb1000bf7df09c4748e6458", + "reference": "38fe533e93f86a1b2fb1000bf7df09c4748e6458", "shasum": "" }, "require": { @@ -10047,7 +10099,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-package-tools/issues", - "source": "https://github.com/spatie/laravel-package-tools/tree/1.15.0" + "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.0" }, "funding": [ { @@ -10055,7 +10107,7 @@ "type": "github" } ], - "time": "2023-04-27T08:09:01+00:00" + "time": "2023-08-09T14:08:04+00:00" }, { "name": "spatie/laravel-permission", @@ -10815,16 +10867,16 @@ }, { "name": "staudenmeir/eloquent-has-many-deep", - "version": "v1.18.1", + "version": "v1.18.3", "source": { "type": "git", "url": "https://github.com/staudenmeir/eloquent-has-many-deep.git", - "reference": "b3421d637de05d2cc62166c5decb9727a029185c" + "reference": "04cdf25eac68bd02c3aa382ddbf437585bd76708" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/staudenmeir/eloquent-has-many-deep/zipball/b3421d637de05d2cc62166c5decb9727a029185c", - "reference": "b3421d637de05d2cc62166c5decb9727a029185c", + "url": "https://api.github.com/repos/staudenmeir/eloquent-has-many-deep/zipball/04cdf25eac68bd02c3aa382ddbf437585bd76708", + "reference": "04cdf25eac68bd02c3aa382ddbf437585bd76708", "shasum": "" }, "require": { @@ -10834,12 +10886,15 @@ }, "require-dev": { "awobaz/compoships": "^2.2", + "barryvdh/laravel-ide-helper": "^2.13", "illuminate/pagination": "^10.0", "korridor/laravel-has-many-merged": "^1.0", + "mockery/mockery": "^1.6", + "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^10.1", "staudenmeir/eloquent-eager-limit": "^1.8", - "staudenmeir/eloquent-json-relations": "^1.8", - "staudenmeir/laravel-adjacency-list": "^1.13" + "staudenmeir/eloquent-json-relations": "^1.8.2", + "staudenmeir/laravel-adjacency-list": "^1.13.7" }, "type": "library", "autoload": { @@ -10860,7 +10915,7 @@ "description": "Laravel Eloquent HasManyThrough relationships with unlimited levels", "support": { "issues": "https://github.com/staudenmeir/eloquent-has-many-deep/issues", - "source": "https://github.com/staudenmeir/eloquent-has-many-deep/tree/v1.18.1" + "source": "https://github.com/staudenmeir/eloquent-has-many-deep/tree/v1.18.3" }, "funding": [ { @@ -10868,7 +10923,7 @@ "type": "custom" } ], - "time": "2023-06-20T18:09:39+00:00" + "time": "2023-08-20T17:00:39+00:00" }, { "name": "staudenmeir/eloquent-has-many-deep-contracts", @@ -14789,16 +14844,16 @@ }, { "name": "dragon-code/support", - "version": "v6.11.2", + "version": "v6.11.3", "source": { "type": "git", "url": "https://github.com/TheDragonCode/support.git", - "reference": "81b4432f35ee5d1d7a310669ccc698d78b3e83a6" + "reference": "3dbf1715e83e216ae1fea31eecc022829dc864df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/TheDragonCode/support/zipball/81b4432f35ee5d1d7a310669ccc698d78b3e83a6", - "reference": "81b4432f35ee5d1d7a310669ccc698d78b3e83a6", + "url": "https://api.github.com/repos/TheDragonCode/support/zipball/3dbf1715e83e216ae1fea31eecc022829dc864df", + "reference": "3dbf1715e83e216ae1fea31eecc022829dc864df", "shasum": "" }, "require": { @@ -14875,6 +14930,10 @@ "url": "https://boosty.to/dragon-code", "type": "boosty" }, + { + "url": "https://www.donationalerts.com/r/dragon_code", + "type": "donationalerts" + }, { "url": "https://github.com/sponsors/TheDragonCode", "type": "github" @@ -14888,7 +14947,7 @@ "type": "yoomoney" } ], - "time": "2023-04-19T08:29:55+00:00" + "time": "2023-08-03T09:43:52+00:00" }, { "name": "fakerphp/faker", @@ -15194,16 +15253,16 @@ }, { "name": "laravel-lang/attributes", - "version": "v2.3.4", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/Laravel-Lang/attributes.git", - "reference": "91352f74351e7961a3cd6ec61f10a61bc185ad70" + "reference": "d8526492361502e88b7f6cd1e7f3952b6becc388" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Lang/attributes/zipball/91352f74351e7961a3cd6ec61f10a61bc185ad70", - "reference": "91352f74351e7961a3cd6ec61f10a61bc185ad70", + "url": "https://api.github.com/repos/Laravel-Lang/attributes/zipball/d8526492361502e88b7f6cd1e7f3952b6becc388", + "reference": "d8526492361502e88b7f6cd1e7f3952b6becc388", "shasum": "" }, "require": { @@ -15212,8 +15271,8 @@ "php": "^8.1" }, "require-dev": { - "laravel-lang/status-generator": "^1.3", - "phpunit/phpunit": "^9.6", + "laravel-lang/status-generator": "^1.19", + "phpunit/phpunit": "^10.0", "symfony/var-dumper": "^6.0" }, "type": "library", @@ -15257,7 +15316,7 @@ ], "support": { "issues": "https://github.com/Laravel-Lang/attributes/issues", - "source": "https://github.com/Laravel-Lang/attributes/tree/v2.3.4" + "source": "https://github.com/Laravel-Lang/attributes/tree/v2.4.0" }, "funding": [ { @@ -15265,20 +15324,20 @@ "type": "open_collective" } ], - "time": "2023-08-02T00:33:11+00:00" + "time": "2023-08-09T09:01:13+00:00" }, { "name": "laravel-lang/http-statuses", - "version": "v3.3.1", + "version": "v3.4.2", "source": { "type": "git", "url": "https://github.com/Laravel-Lang/http-statuses.git", - "reference": "5d9770879bf279dfe10b4f50e370c615be65541a" + "reference": "e5183b69e544bcd3641ff3dcd169134cf0b0c4c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Lang/http-statuses/zipball/5d9770879bf279dfe10b4f50e370c615be65541a", - "reference": "5d9770879bf279dfe10b4f50e370c615be65541a", + "url": "https://api.github.com/repos/Laravel-Lang/http-statuses/zipball/e5183b69e544bcd3641ff3dcd169134cf0b0c4c7", + "reference": "e5183b69e544bcd3641ff3dcd169134cf0b0c4c7", "shasum": "" }, "require": { @@ -15290,8 +15349,8 @@ "laravel-lang/publisher": "<14.0" }, "require-dev": { - "laravel-lang/status-generator": "^1.3.4", - "phpunit/phpunit": "^9.6", + "laravel-lang/status-generator": "^1.19", + "phpunit/phpunit": "^10.0", "symfony/var-dumper": "^6.0" }, "type": "library", @@ -15333,7 +15392,7 @@ ], "support": { "issues": "https://github.com/Laravel-Lang/http-statuses/issues", - "source": "https://github.com/Laravel-Lang/http-statuses/tree/v3.3.1" + "source": "https://github.com/Laravel-Lang/http-statuses/tree/v3.4.2" }, "funding": [ { @@ -15341,7 +15400,7 @@ "type": "open_collective" } ], - "time": "2023-04-03T16:25:01+00:00" + "time": "2023-08-15T01:23:24+00:00" }, { "name": "laravel-lang/lang", @@ -15411,16 +15470,16 @@ }, { "name": "laravel-lang/publisher", - "version": "v14.6.4", + "version": "v14.7.0", "source": { "type": "git", "url": "https://github.com/Laravel-Lang/publisher.git", - "reference": "a6df495f4c8bb7e8555cfbf82070bd417fbef9bb" + "reference": "4e6fa2d8c446282b832ffb16b9b3c33aa4296a5b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Lang/publisher/zipball/a6df495f4c8bb7e8555cfbf82070bd417fbef9bb", - "reference": "a6df495f4c8bb7e8555cfbf82070bd417fbef9bb", + "url": "https://api.github.com/repos/Laravel-Lang/publisher/zipball/4e6fa2d8c446282b832ffb16b9b3c33aa4296a5b", + "reference": "4e6fa2d8c446282b832ffb16b9b3c33aa4296a5b", "shasum": "" }, "require": { @@ -15429,8 +15488,8 @@ "dragon-code/pretty-array": "^4.0", "dragon-code/support": "^6.3", "ext-json": "*", - "illuminate/console": "^8.79 || ^9.18 || ^10.0", - "illuminate/support": "^8.79 || ^9.18 || ^10.0", + "illuminate/console": "^8.79 || ^9.18 || ^10.0 || ^11.0", + "illuminate/support": "^8.79 || ^9.18 || ^10.0 || ^11.0", "league/commonmark": "^2.3", "league/config": "^1.2", "php": "^8.1" @@ -15442,8 +15501,8 @@ }, "require-dev": { "laravel-lang/json-fallback-hotfix": "^1.0", - "orchestra/testbench": "^6.25 || ^7.22 || ^8.0", - "phpunit/phpunit": "^9.6", + "orchestra/testbench": "^6.25 || ^7.22 || ^8.0 || ^9.0", + "phpunit/phpunit": "^9.6 || ^10.0", "symfony/var-dumper": "^5.0 || ^6.0" }, "suggest": { @@ -15514,7 +15573,7 @@ "type": "open_collective" } ], - "time": "2023-03-31T14:18:17+00:00" + "time": "2023-08-09T09:09:57+00:00" }, { "name": "laravel-shift/blueprint", @@ -15618,16 +15677,16 @@ }, { "name": "laravel/pint", - "version": "v1.10.5", + "version": "v1.11.0", "source": { "type": "git", "url": "https://github.com/laravel/pint.git", - "reference": "a458fb057bfa2f5a09888a8aa349610be807b0c3" + "reference": "88e835bf922b94017778bde89ef8f215e1ea40db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/pint/zipball/a458fb057bfa2f5a09888a8aa349610be807b0c3", - "reference": "a458fb057bfa2f5a09888a8aa349610be807b0c3", + "url": "https://api.github.com/repos/laravel/pint/zipball/88e835bf922b94017778bde89ef8f215e1ea40db", + "reference": "88e835bf922b94017778bde89ef8f215e1ea40db", "shasum": "" }, "require": { @@ -15680,20 +15739,20 @@ "issues": "https://github.com/laravel/pint/issues", "source": "https://github.com/laravel/pint" }, - "time": "2023-07-14T10:26:01+00:00" + "time": "2023-08-15T15:30:00+00:00" }, { "name": "laravel/sail", - "version": "v1.23.1", + "version": "v1.23.4", "source": { "type": "git", "url": "https://github.com/laravel/sail.git", - "reference": "62582606f80466aa81fba40b193b289106902853" + "reference": "cfa1ad579349110a87f9412eb65ecba94d682ac2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sail/zipball/62582606f80466aa81fba40b193b289106902853", - "reference": "62582606f80466aa81fba40b193b289106902853", + "url": "https://api.github.com/repos/laravel/sail/zipball/cfa1ad579349110a87f9412eb65ecba94d682ac2", + "reference": "cfa1ad579349110a87f9412eb65ecba94d682ac2", "shasum": "" }, "require": { @@ -15745,35 +15804,35 @@ "issues": "https://github.com/laravel/sail/issues", "source": "https://github.com/laravel/sail" }, - "time": "2023-06-28T18:31:28+00:00" + "time": "2023-08-17T12:49:32+00:00" }, { "name": "mockery/mockery", - "version": "1.6.4", + "version": "1.6.6", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "d1413755e26fe56a63455f7753221c86cbb88f66" + "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/d1413755e26fe56a63455f7753221c86cbb88f66", - "reference": "d1413755e26fe56a63455f7753221c86cbb88f66", + "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e", + "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e", "shasum": "" }, "require": { "hamcrest/hamcrest-php": "^2.0.1", "lib-pcre": ">=7.0", - "php": ">=7.4,<8.3" + "php": ">=7.3" }, "conflict": { "phpunit/phpunit": "<8.0" }, "require-dev": { - "phpunit/phpunit": "^8.5 || ^9.3", + "phpunit/phpunit": "^8.5 || ^9.6.10", "psalm/plugin-phpunit": "^0.18.4", "symplify/easy-coding-standard": "^11.5.0", - "vimeo/psalm": "^5.13.1" + "vimeo/psalm": "^4.30" }, "type": "library", "autoload": { @@ -15830,7 +15889,7 @@ "security": "https://github.com/mockery/mockery/security/advisories", "source": "https://github.com/mockery/mockery" }, - "time": "2023-07-19T15:51:02+00:00" + "time": "2023-08-09T00:03:52+00:00" }, { "name": "myclabs/deep-copy", @@ -16411,16 +16470,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.6.10", + "version": "9.6.11", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "a6d351645c3fe5a30f5e86be6577d946af65a328" + "reference": "810500e92855eba8a7a5319ae913be2da6f957b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a6d351645c3fe5a30f5e86be6577d946af65a328", - "reference": "a6d351645c3fe5a30f5e86be6577d946af65a328", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/810500e92855eba8a7a5319ae913be2da6f957b0", + "reference": "810500e92855eba8a7a5319ae913be2da6f957b0", "shasum": "" }, "require": { @@ -16494,7 +16553,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.10" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.11" }, "funding": [ { @@ -16510,7 +16569,7 @@ "type": "tidelift" } ], - "time": "2023-07-10T04:04:23+00:00" + "time": "2023-08-19T07:10:56+00:00" }, { "name": "sebastian/cli-parser", diff --git a/resources/lang/bg.json b/resources/lang/bg.json index ca5d4189..564d17d3 100644 --- a/resources/lang/bg.json +++ b/resources/lang/bg.json @@ -829,5 +829,12 @@ "Bitcoin - Rabbit Hole": "", "This is a great overview of the Bitcoin rabbit hole with entrances to areas Bitcoin encompasses. Each topic has its own rabbit hole, visualized through infographics in a simple and understandable way, with QR codes leading to explanatory videos and articles. Play fun on your journey of discovery!": "", "Bindle Gallery": "", - "Die berühmte Bindlesammlung von FiatTracker.": "" + "Die berühmte Bindlesammlung von FiatTracker.": "", + "BooksForPlebs": "", + "Local book lending for Bitcoin-Meetup\\'s.": "", + "Neues Bindle hochladen": "", + "Suche": "", + "Wurde zuerst hier gepostet:": "", + "Bücherverleih": "", + "Bindles": "" } \ No newline at end of file diff --git a/resources/lang/de.json b/resources/lang/de.json index a9c7b9dc..8576770d 100644 --- a/resources/lang/de.json +++ b/resources/lang/de.json @@ -869,5 +869,12 @@ "Bitcoin - Rabbit Hole": "Bitcoin - Kaninchenbau", "This is a great overview of the Bitcoin rabbit hole with entrances to areas Bitcoin encompasses. Each topic has its own rabbit hole, visualized through infographics in a simple and understandable way, with QR codes leading to explanatory videos and articles. Play fun on your journey of discovery!": "Dies ist eine große Übersicht über den Bitcoin Kaninchenbau mit Eingängen zu Bereichen die Bitcoin umfasst. Jedes Thema besitzt eine eigene Höhle, die durch Infografiken einfach und verständlich visualisiert ist und über QR Codes zu Erklärvideos und -artikeln führen. Spiel Spaß auf deiner Entdeckungsreise!", "Bindle Gallery": "", - "Die berühmte Bindlesammlung von FiatTracker.": "" + "Die berühmte Bindlesammlung von FiatTracker.": "", + "BooksForPlebs": "", + "Local book lending for Bitcoin-Meetup\\'s.": "", + "Neues Bindle hochladen": "", + "Suche": "", + "Wurde zuerst hier gepostet:": "", + "Bücherverleih": "", + "Bindles": "" } \ No newline at end of file diff --git a/resources/lang/en.json b/resources/lang/en.json index c9d9e712..cbc3c7ca 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -869,5 +869,12 @@ "Bitcoin - Rabbit Hole": "", "This is a great overview of the Bitcoin rabbit hole with entrances to areas Bitcoin encompasses. Each topic has its own rabbit hole, visualized through infographics in a simple and understandable way, with QR codes leading to explanatory videos and articles. Play fun on your journey of discovery!": "", "Bindle Gallery": "", - "Die berühmte Bindlesammlung von FiatTracker.": "" -} \ No newline at end of file + "Die berühmte Bindlesammlung von FiatTracker.": "The famous Bindle collection by FiatTracker.", + "BooksForPlebs": "BooksForPlebs", + "Local book lending for Bitcoin-Meetup\\'s.": "", + "Neues Bindle hochladen": "Upload new Bindle", + "Suche": "Search", + "Wurde zuerst hier gepostet:": "Was first posted here:", + "Bücherverleih": "Book lending", + "Bindles": "" +} diff --git a/resources/lang/es.json b/resources/lang/es.json index d1821fd5..0e66f092 100644 --- a/resources/lang/es.json +++ b/resources/lang/es.json @@ -869,5 +869,12 @@ "Bitcoin - Rabbit Hole": "", "This is a great overview of the Bitcoin rabbit hole with entrances to areas Bitcoin encompasses. Each topic has its own rabbit hole, visualized through infographics in a simple and understandable way, with QR codes leading to explanatory videos and articles. Play fun on your journey of discovery!": "", "Bindle Gallery": "", - "Die berühmte Bindlesammlung von FiatTracker.": "" + "Die berühmte Bindlesammlung von FiatTracker.": "", + "BooksForPlebs": "", + "Local book lending for Bitcoin-Meetup\\'s.": "", + "Neues Bindle hochladen": "", + "Suche": "", + "Wurde zuerst hier gepostet:": "", + "Bücherverleih": "", + "Bindles": "" } \ No newline at end of file diff --git a/resources/lang/fr.json b/resources/lang/fr.json index 24952ec5..cf0d2e42 100644 --- a/resources/lang/fr.json +++ b/resources/lang/fr.json @@ -870,5 +870,12 @@ "Bitcoin - Rabbit Hole": "", "This is a great overview of the Bitcoin rabbit hole with entrances to areas Bitcoin encompasses. Each topic has its own rabbit hole, visualized through infographics in a simple and understandable way, with QR codes leading to explanatory videos and articles. Play fun on your journey of discovery!": "", "Bindle Gallery": "", - "Die berühmte Bindlesammlung von FiatTracker.": "" + "Die berühmte Bindlesammlung von FiatTracker.": "", + "BooksForPlebs": "", + "Local book lending for Bitcoin-Meetup\\'s.": "", + "Neues Bindle hochladen": "", + "Suche": "", + "Wurde zuerst hier gepostet:": "", + "Bücherverleih": "", + "Bindles": "" } \ No newline at end of file diff --git a/resources/lang/hr.json b/resources/lang/hr.json index b98ebe2f..0784caa6 100644 --- a/resources/lang/hr.json +++ b/resources/lang/hr.json @@ -870,5 +870,12 @@ "Bitcoin - Rabbit Hole": "", "This is a great overview of the Bitcoin rabbit hole with entrances to areas Bitcoin encompasses. Each topic has its own rabbit hole, visualized through infographics in a simple and understandable way, with QR codes leading to explanatory videos and articles. Play fun on your journey of discovery!": "", "Bindle Gallery": "", - "Die berühmte Bindlesammlung von FiatTracker.": "" + "Die berühmte Bindlesammlung von FiatTracker.": "", + "BooksForPlebs": "", + "Local book lending for Bitcoin-Meetup\\'s.": "", + "Neues Bindle hochladen": "", + "Suche": "", + "Wurde zuerst hier gepostet:": "", + "Bücherverleih": "", + "Bindles": "" } \ No newline at end of file diff --git a/resources/lang/it.json b/resources/lang/it.json index 5de3adc7..f70968ae 100644 --- a/resources/lang/it.json +++ b/resources/lang/it.json @@ -870,5 +870,12 @@ "Bitcoin - Rabbit Hole": "", "This is a great overview of the Bitcoin rabbit hole with entrances to areas Bitcoin encompasses. Each topic has its own rabbit hole, visualized through infographics in a simple and understandable way, with QR codes leading to explanatory videos and articles. Play fun on your journey of discovery!": "", "Bindle Gallery": "", - "Die berühmte Bindlesammlung von FiatTracker.": "" + "Die berühmte Bindlesammlung von FiatTracker.": "", + "BooksForPlebs": "", + "Local book lending for Bitcoin-Meetup\\'s.": "", + "Neues Bindle hochladen": "", + "Suche": "", + "Wurde zuerst hier gepostet:": "", + "Bücherverleih": "", + "Bindles": "" } \ No newline at end of file diff --git a/resources/lang/mk.json b/resources/lang/mk.json index 6caef0a1..e75951e2 100644 --- a/resources/lang/mk.json +++ b/resources/lang/mk.json @@ -870,5 +870,12 @@ "Bitcoin - Rabbit Hole": "", "This is a great overview of the Bitcoin rabbit hole with entrances to areas Bitcoin encompasses. Each topic has its own rabbit hole, visualized through infographics in a simple and understandable way, with QR codes leading to explanatory videos and articles. Play fun on your journey of discovery!": "", "Bindle Gallery": "", - "Die berühmte Bindlesammlung von FiatTracker.": "" + "Die berühmte Bindlesammlung von FiatTracker.": "", + "BooksForPlebs": "", + "Local book lending for Bitcoin-Meetup\\'s.": "", + "Neues Bindle hochladen": "", + "Suche": "", + "Wurde zuerst hier gepostet:": "", + "Bücherverleih": "", + "Bindles": "" } \ No newline at end of file diff --git a/resources/lang/pl.json b/resources/lang/pl.json index 0b673e61..e38e8f34 100644 --- a/resources/lang/pl.json +++ b/resources/lang/pl.json @@ -870,5 +870,12 @@ "Bitcoin - Rabbit Hole": "", "This is a great overview of the Bitcoin rabbit hole with entrances to areas Bitcoin encompasses. Each topic has its own rabbit hole, visualized through infographics in a simple and understandable way, with QR codes leading to explanatory videos and articles. Play fun on your journey of discovery!": "", "Bindle Gallery": "", - "Die berühmte Bindlesammlung von FiatTracker.": "" + "Die berühmte Bindlesammlung von FiatTracker.": "", + "BooksForPlebs": "", + "Local book lending for Bitcoin-Meetup\\'s.": "", + "Neues Bindle hochladen": "", + "Suche": "", + "Wurde zuerst hier gepostet:": "", + "Bücherverleih": "", + "Bindles": "" } \ No newline at end of file diff --git a/resources/lang/pt.json b/resources/lang/pt.json index e01c8cd2..b770e205 100644 --- a/resources/lang/pt.json +++ b/resources/lang/pt.json @@ -870,5 +870,12 @@ "Bitcoin - Rabbit Hole": "", "This is a great overview of the Bitcoin rabbit hole with entrances to areas Bitcoin encompasses. Each topic has its own rabbit hole, visualized through infographics in a simple and understandable way, with QR codes leading to explanatory videos and articles. Play fun on your journey of discovery!": "", "Bindle Gallery": "", - "Die berühmte Bindlesammlung von FiatTracker.": "" + "Die berühmte Bindlesammlung von FiatTracker.": "", + "BooksForPlebs": "", + "Local book lending for Bitcoin-Meetup\\'s.": "", + "Neues Bindle hochladen": "", + "Suche": "", + "Wurde zuerst hier gepostet:": "", + "Bücherverleih": "", + "Bindles": "" } \ No newline at end of file diff --git a/resources/lang/sv.json b/resources/lang/sv.json index 4ef404d9..53355de1 100644 --- a/resources/lang/sv.json +++ b/resources/lang/sv.json @@ -832,5 +832,12 @@ "Bitcoin - Rabbit Hole": "", "This is a great overview of the Bitcoin rabbit hole with entrances to areas Bitcoin encompasses. Each topic has its own rabbit hole, visualized through infographics in a simple and understandable way, with QR codes leading to explanatory videos and articles. Play fun on your journey of discovery!": "", "Bindle Gallery": "", - "Die berühmte Bindlesammlung von FiatTracker.": "" + "Die berühmte Bindlesammlung von FiatTracker.": "", + "BooksForPlebs": "", + "Local book lending for Bitcoin-Meetup\\'s.": "", + "Neues Bindle hochladen": "", + "Suche": "", + "Wurde zuerst hier gepostet:": "", + "Bücherverleih": "", + "Bindles": "" } \ No newline at end of file diff --git a/resources/lang/tr.json b/resources/lang/tr.json index 462fb0dd..6805b744 100644 --- a/resources/lang/tr.json +++ b/resources/lang/tr.json @@ -844,5 +844,12 @@ "Bitcoin - Rabbit Hole": "", "This is a great overview of the Bitcoin rabbit hole with entrances to areas Bitcoin encompasses. Each topic has its own rabbit hole, visualized through infographics in a simple and understandable way, with QR codes leading to explanatory videos and articles. Play fun on your journey of discovery!": "", "Bindle Gallery": "", - "Die berühmte Bindlesammlung von FiatTracker.": "" + "Die berühmte Bindlesammlung von FiatTracker.": "", + "BooksForPlebs": "", + "Local book lending for Bitcoin-Meetup\\'s.": "", + "Neues Bindle hochladen": "", + "Suche": "", + "Wurde zuerst hier gepostet:": "", + "Bücherverleih": "", + "Bindles": "" } \ No newline at end of file diff --git a/resources/views/livewire/auth/ln-url-auth.blade.php b/resources/views/livewire/auth/ln-url-auth.blade.php index 4e89f538..7f5ccea5 100644 --- a/resources/views/livewire/auth/ln-url-auth.blade.php +++ b/resources/views/livewire/auth/ln-url-auth.blade.php @@ -51,7 +51,14 @@ black :href="'lightning:'.$this->lnurl" > - {{ __('Click to connect') }} + {{ __('Click to connect') }} + @@ -94,8 +101,9 @@ >Balance of Satoshis, Blixt, + target="_blank" href="https://blixtwallet.github.io" + class="leading-6 text-blue-400 bg-transparent cursor-pointer" + style="text-decoration: none; list-style: outside;">Blixt, Geyser, LifPay, + rel="nofollow" + class="leading-6 text-blue-400 bg-transparent cursor-pointer" + style="text-decoration: none; list-style: outside;">LifPay, LightningTipBot, Phoenix, + rel="nofollow" + class="leading-6 text-blue-400 bg-transparent cursor-pointer" + style="text-decoration: none; list-style: outside;">Phoenix, SeedAuthExtension, SimpleBitcoinWallet, + target="_blank" href="https://lightning-wallet.com" + rel="nofollow" + class="leading-6 text-blue-400 bg-transparent cursor-pointer" + style="text-decoration: none; list-style: outside;">SimpleBitcoinWallet, Sparrow Wallet, + rel="nofollow" + class="leading-6 text-blue-400 bg-transparent cursor-pointer" + style="text-decoration: none; list-style: outside;">Sparrow Wallet, Zap Desktop, Zeus + rel="nofollow" + class="leading-6 text-blue-400 bg-transparent cursor-pointer" + style="text-decoration: none; list-style: outside;">Zeus diff --git a/resources/views/livewire/profile/meetups.blade.php b/resources/views/livewire/profile/meetups.blade.php index 4c396909..9bb2c30a 100644 --- a/resources/views/livewire/profile/meetups.blade.php +++ b/resources/views/livewire/profile/meetups.blade.php @@ -23,9 +23,12 @@ {{ __('Your current Meetup groups') }}