简单的PHP Git包装器

v0.1 2013-12-29 19:56 UTC

This package is not auto-updated.

Last update: 2024-09-10 02:29:04 UTC


README

Build Status Dependency Status

这是一个非常简单的PHP Git包装器。目前它包含有限的功能,随着我的(以及他人的)需求,将会添加更多功能。

示例

<?php
require_once __DIR__ . '/vendor/autoload.php';

$repo = new \ScottRobertson\Git\Repository(
    new \ScottRobertson\Git\Command(
        '/tmp/data/php-git'
    ),
    'https://github.com/scottrobertson/php-git.git'
);

print_r($repo->getCommits());