This package will help to manage version of your application. It will create version.yaml file in root of your project and you can manage version of your application in this file.
For more about application versioning please follow Semantic Versioning
You can install the package via composer:
composer require misodrobny/application-versioning
After installation, you need to run install script which will publish config file and create default version.yaml file.
php artisan application-versioning:install
This is the contents of the published config file:
return [
'version_file_path' => base_path('version.yaml'),
];
Initial formated version has following structure:
$major.$minor.$patch - $git_hash
$git_hash
contains 7 characters long GIT HASH from current git commit.
For getting version of your application you can use facade ApplicationVersion
echo ApplicationVersion::getFormatedVersion();
To increase version of your application you can use following methods:
(new ApplicationVersioning)->increaseMajor();
(new ApplicationVersioning)->increaseMinor();
(new ApplicationVersioning)->increasePatch();
It is also possible to run
php artisan application-version:increase-major
php artisan application-version:increase-minor
php artisan application-version:increase-patch
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.