artarts36 / git-handler-remote
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/artarts36/git-handler-remote
Requires
- php: >=7.2
- ext-ssh2: *
- artarts36/git-handler: ^1.0
- artarts36/shell-command-ssh-executor: ^1.2.0
This package is auto-updated.
Last update: 2025-09-23 06:20:21 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/');