chore: update dependencies

This commit is contained in:
Benjamin Nussbaum 2025-09-02 18:09:22 +02:00
parent 425dbf6b3f
commit f20977a822
8 changed files with 145 additions and 139 deletions

View file

@ -11,12 +11,16 @@ This application is a Laravel application and its main Laravel ecosystems packag
- php - 8.4.12
- laravel/framework (LARAVEL) - v12
- laravel/prompts (PROMPTS) - v0
- laravel/sanctum (SANCTUM) - v4
- laravel/socialite (SOCIALITE) - v5
- livewire/flux (FLUXUI_FREE) - v2
- livewire/livewire (LIVEWIRE) - v3
- livewire/volt (VOLT) - v1
- larastan/larastan (LARASTAN) - v3
- laravel/pint (PINT) - v1
- laravel/sail (SAIL) - v1
- pestphp/pest (PEST) - v4
- phpunit/phpunit (PHPUNIT) - v12
- tailwindcss (TAILWINDCSS) - v4
@ -381,8 +385,6 @@ $delete = fn(Product $product) => $product->delete();
<!-- HTML / UI Here -->
</code-snippet>
<code-snippet name="Real-Time Search With Volt" lang="php">
<flux:input
wire:model.live.debounce.300ms="search"
@ -390,8 +392,6 @@ $delete = fn(Product $product) => $product->delete();
/>
</code-snippet>
<code-snippet name="Loading States With Volt" lang="php">
<flux:button wire:click="save" wire:loading.attr="disabled">
<span wire:loading.remove>Save</span>
@ -500,8 +500,6 @@ it('may reset the password', function () {
});
</code-snippet>
<code-snippet name="Pest Smoke Testing Example" lang="php">
$pages = visit(['/', '/about', '/contact']);