How to check the laravel/laravel
version? Not laravel/framework
with php artisan -V
.
https://github.com/laravel/laravel
https://github.com/laravel/framework
CodePudding user response:
Here are some method to check Laravel Version :
Method #1 Check composer.lock file and search for:
"name": "laravel/framework",
"version": "v7.30.6",
Method #2
Run php artisan -V
or php artisan --version
on terminal.
I strongly recommend referring composer.lock file to check version :)
CodePudding user response:
1. php artisan --version
2. app()->version();
3. Application.php (find VERSION string)
You can read all about that here.