tivie / php-git-log-parser
A parser for logs generated by git log
Installs: 43 818
Dependents: 0
Suggesters: 0
Security: 0
Stars: 19
Watchers: 3
Forks: 8
Open Issues: 1
Requires
- php: >=5.3.0
- tivie/command: 0.2.*
Requires (Dev)
- phpunit/phpunit: 4.3.*
This package is not auto-updated.
Last update: 2024-10-26 16:54:16 UTC
README
A parser, written in PHP, for logs generated by git log
Installation
You can install it by cloning the git repository or using composer.
Git clone
git clone https://github.com/tivie/php-git-log-parser.git
Composer
Add these lines to your composer.json:
{ "require": { "tivie/php-git-log-parser": "*" } }
or run the following command:
php composer.phar require tivie/php-git-log-parser
Quick guide
To parse the current git repository log, you can simply
$parser = new \Tivie\GitLogParser\Parser(); $logArray = $parser->parse();
License
PHP Git Log Parser is released under Apache 2.0 license. For more information, please consult the LICENSE file in this repository or http://www.apache.org/licenses/LICENSE-2.0.txt.