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/artisan

Similar Posts:

    None Found

Leave a Reply

Your email address will not be published. Required fields are marked *