Bahman.A
Bahman.A

Reputation: 1296

Are minor versions of Laravel 6.x consider LTS?

I'm considering using Laravel 6.5 for my next project, however, I want to make sure it will be considered as a long term support version. Laravel's documentation for version 6.x has a table that shows the version 6 as LTS but it doesn't say anything about the minor versions of 6. So my question is: can I use 6.5 and still receive the LTS? or like the older way of Laravel versioning like how it works across the 5.x version; If 5.5 is LTS 5.6 is not necessarily LTS.

Upvotes: 3

Views: 286

Answers (1)

lagbox
lagbox

Reputation: 50511

All of Laravel 6.x is LTS as it is all Laravel 6. In Laravel 6, Laravel changes the versioning scheme to get away from the previous style where minor version numbers were acting like major versions (5.1, 5.2, 5.3, etc were all their own versions).

Laravel now follows semver, Semantic Versioning.

Upvotes: 4

Related Questions