diff --git a/composer.json b/composer.json index c61a1ab..5ef109c 100755 --- a/composer.json +++ b/composer.json @@ -1,18 +1,26 @@ { "name": "arkecosystem/crypto", "description": "A simple PHP Cryptography Implementation for the Ark Blockchain.", - "keywords": ["api", "ark", "blockchain", "crypto", "currency"], + "keywords": [ + "api", + "ark", + "blockchain", + "crypto", + "currency" + ], "license": "MIT", - "authors": [{ - "name": "Brian Faust", - "email": "hello@brianfaust.me", - "homepage": "https://github.com/faustbrian" - }], + "authors": [ + { + "name": "Brian Faust", + "email": "hello@brianfaust.me", + "homepage": "https://github.com/faustbrian" + } + ], "require": { "php": "^7.2", "bitwasp/bitcoin": "^1.0", - "faustbrian/binary": "^0.4.0", - "faustbrian/byte-buffer": "^0.1.3" + "faustbrian/byte-buffer": "^0.1.4", + "kodekeep/binary": "^1.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.16", diff --git a/src/Identities/Address.php b/src/Identities/Address.php index fa014b3..645a986 100644 --- a/src/Identities/Address.php +++ b/src/Identities/Address.php @@ -22,7 +22,7 @@ use BitWasp\Bitcoin\Crypto\EcAdapter\Impl\PhpEcc\Key\PrivateKey as EccPrivateKey; use BitWasp\Bitcoin\Crypto\Hash; use BitWasp\Buffertools\Buffer; -use BrianFaust\Binary\UnsignedInteger\Writer; +use KodeKeep\Binary\UnsignedInteger\Writer; /** * This is the address class.