tjvb/githash

Get the current git hash from your project.

Maintainers

Details

gitlab.com/tjvb/githash

Source

Issues

Fund package maintenance!
Paypal
tvbeek/
TJVB

Installs: 9 206

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Forks: 1

1.3.0 2023-11-24 09:40 UTC

This package is auto-updated.

Last update: 2024-04-24 10:41:12 UTC


README

Latest Stable Version Pipeline status Coverage report Tested on PHP 8.0 to 8.2 Latest Unstable Version

PHP Version Require PHPMD PHPStan PHPCS

License

This package is intended to give a useful option for getting the hash from the current commit.

Usage

try {
    $retriever = Retriever::getWithFactory(GitHashFinderFactory::withDefaultFinders());
    echo $retriever->getHash($path)->hash() . PHP_EOL;
} catch (GitHashException $exception) {
    echo 'Failed to get the hash ' .  $exception->getMessage() . PHP_EOL;
}

Examples

See docs/examples for examples about how to use this package.

Installation

You can install this package with composer by executing the command: composer require tjvb/githash.

Different HashFinders

The package provide 3 different GitHashFinder they all have some pro's and con's.

GitHashFinderRequirementsBenefitsCons
GitProcessCommandHashFinderThe symfony/process package and git executable.This execute the git commands with the symfony/process package to get good feedback.You need to install this package and have the git command available.
GitShellExecCommandHashFinderThe shell_exec PHP function and git executable.This execute the git commands.You need to have shell_exec and the git command available.
GitFileSystemHashFinderA branch.It reads the git files and doesn't need to have a git executable.The repository need to have a branch, it doesn't work with a detached head.

Laravel package

If you use Laravel you can use tjvb/laravel-githash, this package can add the hash to your log files and provides a blade component to show the hash.

Changelog

We (try to) document all the changes in CHANGELOG so read it for more information.

Contributing

You are very welcome to contribute, read about it in CONTRIBUTING

License

The MIT License (MIT). Please see License File for more information.