conarwelsh / version
Semantic versioning artisan helper
Installs: 181
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/conarwelsh/version
Requires
- php: >=5.4.0
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