spinzar / version
Version management package for Laravel.
Requires
- php: ^5.6.0|^7.0|^7.1|^7.2|^7.3|^7.4
- laravel/framework: 5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.*|7.*|8.*
README
A SemVer compatible version management package for softwares built on Laravel.
Getting Started
1. Install
Run the following command:
composer require spinzar/version
2. Register (for Laravel < 5.5)
Register the service provider in config/app.php
Spinzar\Version\Provider::class,
Add alias if you want to use the facade.
'Version' => Spinzar\Version\Facade::class,
3. Publish
Publish config file.
php artisan vendor:publish --tag=version
4. Configure
You can change the version information of your app from config/version.php
file
Usage
version($method = null)
You can either enter the method like version('short')
or leave it empty so you could firstly get the instance then call the methods like version()->short()
Changelog
Please see Releases for more information what has changed recently.
Contributing
Pull requests are more than welcome. You must follow the PSR coding standards.
Security
If you discover any security related issues, please email security@spinzar.co instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see LICENSE for more information.