Package Data | |
---|---|
Maintainer Username: | rtablada |
Maintainer Contact: | ryan.tablada@gmail.com (Ryan Tablada) |
Package Create Date: | 2015-10-04 |
Package Last Update: | 2015-10-07 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-09 15:03:38 |
Package Statistics | |
---|---|
Total Downloads: | 1,187 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 1 |
Version Master is a git based versioning tool for PHP projects with Laravel Service Providers.
This package uses the .git
storage file to read the current hash for the specified project or folder.
Since, the GitHashReader
uses file access, it does not need to have access to the git
command or exec
privileges which may not be available in production environments.
Via Composer
$ composer require rtablada/version-master
The basic class for this package is the GitHashReader
.
It requires two arguments:
required
- An instance of Illuminate\Filesystem
- Used to read from the Git File Treerequired
- A string path for the root of the git project.optional
- A string path for the name of the git storage folder (defaults to .git
)$reader = new Rtablada\VersionMaster\GitHashReader();
echo $reader->getFullVersion(); // Outputs latest hash on git HEAD
This package also includes a Service Provider to allow use in Laravel Applications.
This Service Provider acts in two ways:
Rtablada\VersionMaster\GitHashReader
can be injected.@version()
helper in Blade to output the short version number.To install this Service Provider just add Rtablada\VersionMaster\GitVersionProvider::class
in your providers
array in config/app.php
.
Please see CHANGELOG for more information what has changed recently.
$ composer test
Please see CONTRIBUTING for details.
If you discover any security related issues, please email ryan.tablada@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.