artarts36/git-handler-remote

Maintainers

Package info

github.com/ArtARTs36/php-git-handler-remote

pkg:composer/artarts36/git-handler-remote

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.1.0 2021-08-22 21:41 UTC

This package is auto-updated.

Last update: 2026-02-23 07:19:59 UTC


README

Work with git repository on remote server

Installation:

composer require artarts36/git-handler-remote

Usage

use ArtARTs36\GitHandler\Factory\RemoteGitFactory;
use ArtARTs36\ShellCommand\Executors\Ssh\Connection;

$connection = Connection::withPassword('host', 'user', 'password');

$git = (new RemoteGitFactory($connection))->factory('/var/web/project/');