tikiwiki/packages/tiki-pkg-tikimanager/gitonomy/gitlib
2023-11-20 20:52:04 +00:00
..
.github Update: Tiki 26 path 2023-11-20 20:52:04 +00:00
doc Update: Tiki 26 path 2023-11-20 20:52:04 +00:00
src/Gitonomy/Git Update: Tiki 26 path 2023-11-20 20:52:04 +00:00
tests Update: Tiki 26 path 2023-11-20 20:52:04 +00:00
.gitattributes Update: Tiki 26 path 2023-11-20 20:52:04 +00:00
.gitignore Update: Tiki 26 path 2023-11-20 20:52:04 +00:00
composer.json Update: Tiki 26 path 2023-11-20 20:52:04 +00:00
LICENSE Update: Tiki 26 path 2023-11-20 20:52:04 +00:00
phpunit.xml.dist Update: Tiki 26 path 2023-11-20 20:52:04 +00:00
README.md Update: Tiki 26 path 2023-11-20 20:52:04 +00:00
test-git-versions.sh Update: Tiki 26 path 2023-11-20 20:52:04 +00:00

Gitlib for Gitonomy

Build Status StyleCI License Downloads

This library provides methods to access Git repository from PHP 5.6+.

It makes shell calls, which makes it less performant than any solution.

Anyway, it's convenient and don't need to build anything to use it. That's how we love it.

Quick Start

You can install gitlib using Composer. Simply require the version you need:

$ composer require gitonomy/gitlib

or edit your composer.json file by hand:

{
    "require": {
        "gitonomy/gitlib": "^1.3"
    }
}

Example Usage

<?php

use Gitonomy\Git\Repository;

$repository = new Repository('/path/to/repository');

foreach ($repository->getReferences()->getBranches() as $branch) {
    echo '- '.$branch->getName().PHP_EOL;
}

$repository->run('fetch', ['--all']);

API Documentation

For Enterprise

Available as part of the Tidelift Subscription

The maintainers of gitonomy/gitlib and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.