antalaron/git-version
最新稳定版本:v1.4.0
Composer 安装命令:
composer require antalaron/git-version
包简介
PHP library to get current Git version
README 文档
README
PHP library to get the Git version of the project.
This library does not depend on the Git.
Installation
Open a command console, enter your project directory and execute the following command to download the latest stable version of this library:
$ composer require antalaron/git-version
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Usage
To get the version:
$gitVersion = new \Antalaron\GitVersion\GitVersion(); $gitVersion->getVersion(__DIR__); // or static \Antalaron\GitVersion\GitVersion::getGitVersion(__DIR__);
If no git found, then the return value is null.
There is a second $hashLenght parameter in the methods. With that, you will get
the first n character of the hash.
To get the latest commit message:
$gitVersion = new \Antalaron\GitVersion\GitVersion(); $gitVersion->getLatestCommit(__DIR__); // or static \Antalaron\GitVersion\GitVersion::getGitLatestCommit(__DIR__);
On error, the return value is null.
To get the latest commit object:
$gitVersion = new \Antalaron\GitVersion\GitVersion(); $gitVersion->getLatestCommitDetails(__DIR__); // or static \Antalaron\GitVersion\GitVersion::getGitLatestCommitDetails(__DIR__);
License
This project is under MIT License.
统计信息
- 总下载量: 4.57k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-11-14