Skip to content

Commit a35480a

Browse files
committed
Migrate package to jord-jd/php-ssh-connection
1 parent d6c8326 commit a35480a

2 files changed

Lines changed: 33 additions & 25 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# PHP SSH Connection
22

3-
[![Build Status](https://travis-ci.com/DivineOmega/php-ssh-connection.svg?branch=master)](https://travis-ci.com/DivineOmega/php-ssh-connection)
4-
[![Coverage Status](https://coveralls.io/repos/github/DivineOmega/php-ssh-connection/badge.svg?branch=master)](https://coveralls.io/github/DivineOmega/php-ssh-connection?branch=master)
3+
[![Build Status](https://travis-ci.com/Jord-JD/php-ssh-connection.svg?branch=master)](https://travis-ci.com/Jord-JD/php-ssh-connection)
4+
[![Coverage Status](https://coveralls.io/repos/github/Jord-JD/php-ssh-connection/badge.svg?branch=master)](https://coveralls.io/github/Jord-JD/php-ssh-connection?branch=master)
55

66
The PHP SSH Connection package provides an elegant syntax to connect to SSH servers and execute commands. It supports both password and public-private keypair authentication, and can easily capture command output and errors.
77

@@ -10,7 +10,7 @@ The PHP SSH Connection package provides an elegant syntax to connect to SSH serv
1010
You can install the PHP SSH Connection package by running the following Composer command.
1111

1212
```bash
13-
composer require divineomega/php-ssh-connection
13+
composer require jord-jd/php-ssh-connection
1414
```
1515

1616
## Usage

composer.json

Lines changed: 30 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,33 @@
11
{
2-
"name": "divineomega/php-ssh-connection",
3-
"description": "Provides an elegant syntax to connect to SSH servers and execute commands.",
4-
"type": "library",
5-
"license": "LGPL-3.0-only",
6-
"authors": [
7-
{
8-
"name": "Jordan Hall",
9-
"email": "jordan@hall05.co.uk"
10-
}
11-
],
12-
"require": {
13-
"php": ">=7.1",
14-
"phpseclib/phpseclib": "^2.0"
15-
},
16-
"require-dev": {
17-
"phpunit/phpunit": "^7.0||^8.0",
18-
"php-coveralls/php-coveralls": "^2.0"
19-
},
20-
"autoload": {
21-
"psr-4": {
22-
"DivineOmega\\SSHConnection\\": "src/"
23-
}
2+
"name": "jord-jd/php-ssh-connection",
3+
"description": "Provides an elegant syntax to connect to SSH servers and execute commands.",
4+
"type": "library",
5+
"license": "LGPL-3.0-only",
6+
"authors": [
7+
{
8+
"name": "Jordan Hall",
9+
"email": "jordan@hall05.co.uk"
2410
}
11+
],
12+
"require": {
13+
"php": ">=7.1",
14+
"phpseclib/phpseclib": "^2.0"
15+
},
16+
"require-dev": {
17+
"phpunit/phpunit": "^7.0||^8.0",
18+
"php-coveralls/php-coveralls": "^2.0"
19+
},
20+
"autoload": {
21+
"psr-4": {
22+
"DivineOmega\\SSHConnection\\": "src/"
23+
}
24+
},
25+
"replace": {
26+
"divineomega/php-ssh-connection": "self.version"
27+
},
28+
"extra": {
29+
"branch-alias": {
30+
"dev-master": "3.0-dev"
31+
}
32+
}
2533
}

0 commit comments

Comments
 (0)