Download the PHP package codimais/appver without Composer
On this page you can find all versions of the php package codimais/appver. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download codimais/appver
More information about codimais/appver
Files in codimais/appver
Package appver
Short Description Controls semantic versioning of your Laravel application with easy
License MIT
Homepage https://github.com/codimais/appver
Informations about the package appver
AppVer
Controls semantic versioning of your Laravel application with easy!
The main goal of this package is to add automated and independent semantic version control, without the need to use git tags or branches.
Installation
You can install the package via composer:
After installing the package in your project, go to the terminal and run the below command to initialize AppVer:
The command will ask if you want to define a specific initial version. You can accept the default, which is "1.0.0" or type yours app version.
It will also try to identify if your project has a git repository and, if so, it will offer to create a git hook to automate the version increment.
Usage
Auto increment
If your project has a git repository and if AppVer was able to create the pre-commit hook, you don't need to do anything.
Before each commit, git will run the pre-commit hook that will increment the version of your application and add it to the current commit, automatically.
Manual increment
If your project is not in a git repository or if you do not want to use auto increment, then you can increment the version of your application manually:
You can combine the increments as you need. The order does not matter.
If you need to display the current version in your API or in a View:
Testing
Testing are not ready yet!
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
- Leandro Antonello
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.