Subversion Repositories oidplus

Rev

Rev 1193 | Go to most recent revision | Last modification | View Log | RSS feed

Last modification

Path Last modification Log RSS
[NODE][NODE][NODE][NODE] [DIRECTORY] src/ 1192  2023-04-10 00:05:07 daniel-marschall Log RSS
[NODE][NODE][NODE][NODE] [FILE] composer.json 1192  2023-04-10 00:05:07 daniel-marschall Log RSS
[NODE][NODE][NODE][NODE] [DB-FILE] Git forks.txt 1192  2023-04-10 00:05:07 daniel-marschall Log RSS
[NODE][NODE][NODE][NODE] [FILE] LICENSE 1192  2023-04-10 00:05:07 daniel-marschall Log RSS
[NODE][NODE][NODE][NODE] [FILE] phpstan.neon.dist 1192  2023-04-10 00:05:07 daniel-marschall Log RSS
[NODE][NODE][NODE][NODE] [FILE] README.md 1192  2023-04-10 00:05:07 daniel-marschall Log RSS

glip (Git Library In PHP)

glip is a Git Library In PHP. It allows you to access bare git repositories

from PHP scripts, even without having git installed.

Initially written by Patrik Fimml, it was forked slightly updated by Daniel Marschall in 2023.

Changes in the fork

Usage

Add dependency in composer using the command git require danielmarschall/glip.

Include the autoload file, as shown below:

<?php

use ViaThinkSoft\Glip\Git;

require_once '/path/to/vendor/autoload.php';

$repo = new Git('project/.git');