Skip to content

Commit

Permalink
Update package to web3p/web3.php
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0Vu committed Jan 14, 2022
1 parent fb94ea9 commit bd40f19
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ Set minimum stability to dev

Then
```
composer require sc0vu/web3.php dev-master
composer require web3p/web3.php dev-master
```

Or you can add this line in composer.json

```
"sc0vu/web3.php": "dev-master"
"web3p/web3.php": "dev-master"
```


Expand Down Expand Up @@ -217,7 +217,7 @@ If you are using docker as development machain, you can try [ethdock](https://gi

1. Clone the repo and install packages.
```
git clone https://github.com/sc0Vu/web3.php.git && cd web3.php && composer install
git clone https://github.com/web3p/web3.php.git && cd web3.php && composer install
```

2. Run test script.
Expand All @@ -229,7 +229,7 @@ vendor/bin/phpunit

1. Clone the repo and run docker container.
```
git clone https://github.com/sc0Vu/web3.php.git
git clone https://github.com/web3p/web3.php.git
```

2. Copy web3.php to web3.php/docker/app directory and start container.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "sc0vu/web3.php",
"name": "web3p/web3.php",
"description": "Ethereum web3 interface.",
"type": "library",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion test/unit/EthApiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ public function testGetBlockByNumber()
if ($err !== null) {
return $this->assertTrue($err !== null);
}
// weired behavior, see https://github.com/sc0Vu/web3.php/issues/16
// weird behavior, see https://github.com/web3p/web3.php/issues/16
$this->assertTrue($block !== null);
});
}
Expand Down
2 changes: 1 addition & 1 deletion test/unit/EthabiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ public function testDecodeParameters()

/**
* testIssue71
* test 33 bytes and 128 bytes string, see: https://github.com/sc0Vu/web3.php/issues/71
* test 33 bytes and 128 bytes string, see: https://github.com/web3p/web3.php/issues/71
* string generated from: https://www.lipsum.com/
*
* @return void
Expand Down
2 changes: 1 addition & 1 deletion test/unit/UtilsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class UtilsTest extends TestCase

/**
* testIssue112Json
* see: https://github.com/sc0Vu/web3.php/issues/112
* see: https://github.com/web3p/web3.php/issues/112
*
* @var string
*/
Expand Down

0 comments on commit bd40f19

Please sign in to comment.