Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

CarolBrusteredman's avatar

How to check the version of Laravel Livewire

I would like to know how to check the version of Laravel Livewire. I'm planning to update Livewire and would like to check the current version.

0 likes
4 replies
sr57's avatar

You can read your composer.lock file

acor3's avatar

Run command

composer show | grep livewire

output:

livewire/livewire 3.6.3 A front-end framework for Laravel.

1 like
youcefkacem's avatar

there is a artisan command show all the version of the Laravel and packages installed in the app

the command is :

php artisan about

this command output version of packages installed in the application

Please or to participate in this conversation.