conarwelsh/version

This package is abandoned and no longer maintained. No replacement package was suggested.

Semantic versioning artisan helper

dev-master 2015-02-20 18:03 UTC

This package is not auto-updated.

Last update: 2016-08-14 15:14:43 UTC


README

Just a simple semantic-versioning helper for Laravel 5.

This package adds a new command to artisan php artisan release:version which will handle your version increases.

You can optionally pass details of what type of release this is, available options are:

php artisan release:version patch (default): will increment a patch version: 5.2.22 becomes 5.2.23 php artisan release:version minor will increment a minor version: 5.2.23 becomes 5.3.0 php artisan release:version major will increment a major version: 5.3.0 becomes 6.0.0