How to know Laravel version

Try to do grep from files as showed below:

grep -r "TYPO_VERSION" * --color

Output:

$TYPO_VERSION = '4.5-dev';      // deprecated: use the constants defined 

Using Artisan CLI:

php artisan --version

More about Artisan CLI here: https://laravel.com/docs/4.2/artisanRead the rest