What are the Versions Laravel - Understanding Release Process ?

Answers were Sorted based on User's Feedback



What are the Versions Laravel - Understanding Release Process ?..

Answer / surbhi

When it comes to Laravel, there are two active versions as given below -

Laravel 4- released in May 2013
Laravel 5.1- released in February 2015
Laravel 5.1 also includes various releases with the latest version of Laravel 5.1.5 which includes all the robust features for web development.

The following points are worth notable in the context of understanding the release process of Laravel -

The old directory of app/models is removed in Laravel 5.1.

All the controllers, middleware and requests are grouped within a directory under the app/Http folder.

A new folder namely Providers directory is replaced with the app/start files in the previous versions of Laravel 4.x.

All the language files and views are moved to the resources directory.

New artisan command route:cache is used for registration of new routes and is included with the release of Laravel 5.1 and further versions.

Laravel supports HTTP middleware and also includes CSRF tokens and authentication model.

All the authentication models are located under one directory namely resources/views/auth. It includes user registration, authentication and password controllers.

Is This Answer Correct ?    0 Yes 0 No

What are the Versions Laravel - Understanding Release Process ?..

Answer / Sourabh Kumar

Laravel follows a semantic versioning scheme, which means that each release is identified by a major.minor.patch format. The major version (e.g., 8) represents breaking changes, minor version (e.g., 8.x) includes new features and improvements, and patch version (e.g., 8.17.0) contains bug fixes. Laravel releases a new version every 6 months.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Laravel PHP Framework Interview Questions

What is dependency injection laravel?

1 Answers  


What are the Writing Gates and Policies ?

2 Answers  


What are Global Middleware and Route Middleware ?

1 Answers  


Explain the difference between laravel and codeigniter?

1 Answers  


What is a laravel collection?

1 Answers  


How to resolve class instance out of the container in laravel?

1 Answers  


What is backend framework?

1 Answers  


Lists the available router methods used in laravel 5?

1 Answers  


What is difference between implicit and explicit route binding in laravel?

1 Answers  


What is url helper?

1 Answers  


How to share data with views?

1 Answers  


What is http middleware?

1 Answers  


Categories