How to check the Laravel version using CLI / command prompt and files on Windows or Linux
Find your Laravel version quickly using CLI commands or source files. Step-by-step guide for Windows & Linux developers.
$php artisan --version[/vc_column_text][mk_padding_divider size="20"][mk_fancy_title size="20" letter_spacing="" margin_top="20" margin_bottom="0" font_family="none"]On Winows[/mk_fancy_title][vc_column_text css=".vc_custom_1572406843857{margin-bottom: 0px !important;}"]
c:\xampp\htdocs\laravel_application>php artisan --version[/vc_column_text][mk_fancy_title size="20" margin_top="20" margin_bottom="0" font_family="none"]How to check laravel version of a project[/mk_fancy_title][vc_column_text title="Using command line CLI / Command prompt to find Laravel version" css=".vc_custom_1576079694183{margin-bottom: 0px !important;}"]You could use either of two methods described above, using terminal/CMD or by inpecting the source files. Please comment if you face any problems following the instructions. We will try to help as fast as we can.[/vc_column_text][/vc_tab][vc_tab title="Using Source Files" tab_id="1572406098-2-75"][vc_single_image image="8922" img_size="full" onclick="link_image"][vc_column_text css=".vc_custom_1572406696655{margin-bottom: 0px !important;}"]
Open below file in your laravel system using your favourit text editor. /vendor/laravel/framework/src/Illuminate/Foundation/Application.php[/vc_column_text][mk_fancy_title size="20" margin_top="20" margin_bottom="0" font_family="none"]Find laravel version using source files[/mk_fancy_title][/vc_tab][/vc_tabs][/vc_column][/vc_row][vc_row][vc_column][mk_padding_divider size="20"][/vc_column][/vc_row][vc_row][vc_column][mk_padding_divider][vc_column_text css=".vc_custom_1572405501990{margin-bottom: 0px !important;}"]
History of Laravel Releases
| Version | Release | Bug Fixes Until | Security Fixes Until |
|---|---|---|---|
| V1 | June 2011 | – | – |
| V2 | September 2011 | – | – |
| v3 | February 2012 | – | – |
| v4 | May 2013 | – | – |
| 5.0 | Feb 4th, 2015 | Aug 4th, 2015 | Feb 4th, 2016 |
| 5.1 (LTS) | Jun 9th, 2015 | Jun 9th, 2017 | Jun 9th, 2018 |
| 5.2 | Dec 21st, 2015 | Jun 21st, 2016 | Dec 21st, 2016 |
| 5.3 | Aug 23rd, 2016 | Feb 23rd, 2017 | Aug 23rd, 2017 |
| 5.4 | Jan 24th, 2017 | Jul 24th, 2017 | Jan 24th, 2018 |
| 5.5 (LTS) | Aug 30th, 2017 | Aug 30th, 2019 | Aug 30th, 2020 |
| 5.6 | Feb 7th, 2018 | Aug 7th, 2018 | Feb 7th, 2019 |
| 5.7 | Sep 4, 2018 | Feb 4th, 2019 | Sep 4th, 2019 |
| 5.8 | Feb 26th, 2019 | Aug 26th, 2019 | Feb 26th, 2020 |
| 6.0 (LTS) | Sept 3rd, 2019 | Sept 3rd, 2021 | Sept 3rd, 2022 |
Related Articles
Email Authentication: The Critical Foundation of Modern Business Communication
Complete guide to email authentication protocols. Learn SPF, DKIM, DMARC & BIMI configuration, adoption stats, business impact, and 2025 compliance requirements.
Whats DevOps and How to Learn DevOps
PHP Get path in an Laravel application
Laravel framework provides several useful helper methods to get various paths required to access some commonly used directories/folders.app_path() - Laravel app_path helperbase_path() - Laravel helperconfig_path() - Laravel helperdatabase_path() - Laravel helpermix() - Laravel helperpublic_path(...
Magento 2 add a user via command line cli
Create Magento 2 admin users using command line. Quick CLI commands for adding users, setting roles, and managing administrator access.