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.
You can read your composer.lock file
Run command
composer show | grep livewire
output:
livewire/livewire 3.6.3 A front-end framework for Laravel.
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
composer info livewire/livewire
Please or to participate in this conversation.