|
@@ -4,7 +4,7 @@
|
|
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
|
|
"This file is @generated automatically"
|
|
|
],
|
|
|
- "content-hash": "42efa29f92d7a957b961fb1185458530",
|
|
|
+ "content-hash": "17d9a2248d075998bec6a53188ba4224",
|
|
|
"packages": [
|
|
|
{
|
|
|
"name": "adbario/php-dot-notation",
|
|
@@ -854,6 +854,163 @@
|
|
|
},
|
|
|
"time": "2022-12-07T17:46:57+00:00"
|
|
|
},
|
|
|
+ {
|
|
|
+ "name": "bitwasp/bech32",
|
|
|
+ "version": "v0.0.1",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/Bit-Wasp/bech32.git",
|
|
|
+ "reference": "e1ea58c848a4ec59d81b697b3dfe9cc99968d0e7"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/Bit-Wasp/bech32/zipball/e1ea58c848a4ec59d81b697b3dfe9cc99968d0e7",
|
|
|
+ "reference": "e1ea58c848a4ec59d81b697b3dfe9cc99968d0e7",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "phpunit/phpunit": "^5.4.0",
|
|
|
+ "squizlabs/php_codesniffer": "^2.0.0"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "autoload": {
|
|
|
+ "files": [
|
|
|
+ "src/bech32.php"
|
|
|
+ ],
|
|
|
+ "psr-4": {
|
|
|
+ "BitWasp\\Bech32\\": "src/"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "Unlicense"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "Thomas Kerin",
|
|
|
+ "homepage": "https://thomaskerin.io",
|
|
|
+ "role": "Author"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "Pure (no dependencies) implementation of bech32",
|
|
|
+ "homepage": "https://github.com/bit-wasp/bech32",
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/Bit-Wasp/bech32/issues",
|
|
|
+ "source": "https://github.com/Bit-Wasp/bech32/tree/more-tests"
|
|
|
+ },
|
|
|
+ "time": "2018-02-05T22:23:47+00:00"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "bitwasp/bitcoin",
|
|
|
+ "version": "v1.0.4",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/Bit-Wasp/bitcoin-php.git",
|
|
|
+ "reference": "65ff8384a15e805effcf600fb08cef3a0fc63824"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/Bit-Wasp/bitcoin-php/zipball/65ff8384a15e805effcf600fb08cef3a0fc63824",
|
|
|
+ "reference": "65ff8384a15e805effcf600fb08cef3a0fc63824",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require": {
|
|
|
+ "bitwasp/bech32": "^0.0.1",
|
|
|
+ "bitwasp/buffertools": "^0.5.0",
|
|
|
+ "composer/semver": "^1.4.0",
|
|
|
+ "lastguest/murmurhash": "v2.0.0",
|
|
|
+ "mdanter/ecc": "^0.5.0",
|
|
|
+ "php-64bit": ">=7.0",
|
|
|
+ "pleonasm/merkle-tree": "1.0.0"
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "bitwasp/bitcoinconsensus": "v3.0.0",
|
|
|
+ "bitwasp/secp256k1-php": "^v0.2.0",
|
|
|
+ "ext-json": "*",
|
|
|
+ "nbobtc/bitcoind-php": "v2.0.2",
|
|
|
+ "phpunit/phpunit": "^5.4.0",
|
|
|
+ "squizlabs/php_codesniffer": "^2.0.0"
|
|
|
+ },
|
|
|
+ "suggest": {
|
|
|
+ "ext-bitcoinconsensus": "The bitcoinconsensus library for safest possible script verification",
|
|
|
+ "ext-secp256k1": "The secp256k1 library for fast and safe elliptic curve operations"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "autoload": {
|
|
|
+ "files": [
|
|
|
+ "src/Script/functions.php"
|
|
|
+ ],
|
|
|
+ "psr-4": {
|
|
|
+ "BitWasp\\Bitcoin\\": "src/"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "Unlicense"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "Thomas Kerin",
|
|
|
+ "homepage": "https://thomaskerin.io",
|
|
|
+ "role": "Author"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "PHP Bitcoin library with functions for transactions, signatures, serialization, Random/Deterministic ECDSA keys, blocks, RPC bindings",
|
|
|
+ "homepage": "https://github.com/bit-wasp/bitcoin-php",
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/Bit-Wasp/bitcoin-php/issues",
|
|
|
+ "source": "https://github.com/Bit-Wasp/bitcoin-php/tree/v1.0.4"
|
|
|
+ },
|
|
|
+ "time": "2019-12-10T23:28:26+00:00"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "bitwasp/buffertools",
|
|
|
+ "version": "v0.5.7",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/Bit-Wasp/buffertools-php.git",
|
|
|
+ "reference": "133746d0b514e0016d8479b54aa97475405a9f1f"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/Bit-Wasp/buffertools-php/zipball/133746d0b514e0016d8479b54aa97475405a9f1f",
|
|
|
+ "reference": "133746d0b514e0016d8479b54aa97475405a9f1f",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require": {
|
|
|
+ "php-64bit": ">=7.0.0"
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "phpunit/phpunit": "^6.0",
|
|
|
+ "squizlabs/php_codesniffer": "~2.0"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "autoload": {
|
|
|
+ "psr-4": {
|
|
|
+ "BitWasp\\Buffertools\\": "src/Buffertools/"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "MIT"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "Thomas Kerin",
|
|
|
+ "homepage": "https://thomaskerin.io"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "Ruben de Vries",
|
|
|
+ "email": "ruben@rubensayshi.com"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "Toolbox for working with binary and hex data. Similar to NodeJS Buffer.",
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/Bit-Wasp/buffertools-php/issues",
|
|
|
+ "source": "https://github.com/Bit-Wasp/buffertools-php/tree/v0.5.7"
|
|
|
+ },
|
|
|
+ "time": "2020-01-17T21:31:49+00:00"
|
|
|
+ },
|
|
|
{
|
|
|
"name": "carbonphp/carbon-doctrine-types",
|
|
|
"version": "2.1.0",
|
|
@@ -929,6 +1086,86 @@
|
|
|
],
|
|
|
"time": "2023-12-11T17:09:12+00:00"
|
|
|
},
|
|
|
+ {
|
|
|
+ "name": "composer/semver",
|
|
|
+ "version": "1.7.2",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/composer/semver.git",
|
|
|
+ "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/composer/semver/zipball/647490bbcaf7fc4891c58f47b825eb99d19c377a",
|
|
|
+ "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require": {
|
|
|
+ "php": "^5.3.2 || ^7.0 || ^8.0"
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "phpunit/phpunit": "^4.5 || ^5.0.5"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "extra": {
|
|
|
+ "branch-alias": {
|
|
|
+ "dev-master": "1.x-dev"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "autoload": {
|
|
|
+ "psr-4": {
|
|
|
+ "Composer\\Semver\\": "src"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "MIT"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "Nils Adermann",
|
|
|
+ "email": "naderman@naderman.de",
|
|
|
+ "homepage": "http://www.naderman.de"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "Jordi Boggiano",
|
|
|
+ "email": "j.boggiano@seld.be",
|
|
|
+ "homepage": "http://seld.be"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "Rob Bast",
|
|
|
+ "email": "rob.bast@gmail.com",
|
|
|
+ "homepage": "http://robbast.nl"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "Semver library that offers utilities, version constraint parsing and validation.",
|
|
|
+ "keywords": [
|
|
|
+ "semantic",
|
|
|
+ "semver",
|
|
|
+ "validation",
|
|
|
+ "versioning"
|
|
|
+ ],
|
|
|
+ "support": {
|
|
|
+ "irc": "irc://irc.freenode.org/composer",
|
|
|
+ "issues": "https://github.com/composer/semver/issues",
|
|
|
+ "source": "https://github.com/composer/semver/tree/1.7.2"
|
|
|
+ },
|
|
|
+ "funding": [
|
|
|
+ {
|
|
|
+ "url": "https://packagist.com",
|
|
|
+ "type": "custom"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "url": "https://github.com/composer",
|
|
|
+ "type": "github"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
|
|
+ "type": "tidelift"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "time": "2020-12-03T15:47:16+00:00"
|
|
|
+ },
|
|
|
{
|
|
|
"name": "dasprid/enum",
|
|
|
"version": "1.0.5",
|
|
@@ -1219,6 +1456,82 @@
|
|
|
"description": "This is a behavior verification code PHP back-end implementation package",
|
|
|
"time": "2023-03-29T10:35:25+00:00"
|
|
|
},
|
|
|
+ {
|
|
|
+ "name": "fgrosse/phpasn1",
|
|
|
+ "version": "v2.5.0",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/fgrosse/PHPASN1.git",
|
|
|
+ "reference": "42060ed45344789fb9f21f9f1864fc47b9e3507b"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/fgrosse/PHPASN1/zipball/42060ed45344789fb9f21f9f1864fc47b9e3507b",
|
|
|
+ "reference": "42060ed45344789fb9f21f9f1864fc47b9e3507b",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require": {
|
|
|
+ "php": "^7.1 || ^8.0"
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "php-coveralls/php-coveralls": "~2.0",
|
|
|
+ "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
|
|
|
+ },
|
|
|
+ "suggest": {
|
|
|
+ "ext-bcmath": "BCmath is the fallback extension for big integer calculations",
|
|
|
+ "ext-curl": "For loading OID information from the web if they have not bee defined statically",
|
|
|
+ "ext-gmp": "GMP is the preferred extension for big integer calculations",
|
|
|
+ "phpseclib/bcmath_compat": "BCmath polyfill for servers where neither GMP nor BCmath is available"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "extra": {
|
|
|
+ "branch-alias": {
|
|
|
+ "dev-master": "2.0.x-dev"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "autoload": {
|
|
|
+ "psr-4": {
|
|
|
+ "FG\\": "lib/"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "MIT"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "Friedrich Große",
|
|
|
+ "email": "friedrich.grosse@gmail.com",
|
|
|
+ "homepage": "https://github.com/FGrosse",
|
|
|
+ "role": "Author"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "All contributors",
|
|
|
+ "homepage": "https://github.com/FGrosse/PHPASN1/contributors"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "A PHP Framework that allows you to encode and decode arbitrary ASN.1 structures using the ITU-T X.690 Encoding Rules.",
|
|
|
+ "homepage": "https://github.com/FGrosse/PHPASN1",
|
|
|
+ "keywords": [
|
|
|
+ "DER",
|
|
|
+ "asn.1",
|
|
|
+ "asn1",
|
|
|
+ "ber",
|
|
|
+ "binary",
|
|
|
+ "decoding",
|
|
|
+ "encoding",
|
|
|
+ "x.509",
|
|
|
+ "x.690",
|
|
|
+ "x509",
|
|
|
+ "x690"
|
|
|
+ ],
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/fgrosse/PHPASN1/issues",
|
|
|
+ "source": "https://github.com/fgrosse/PHPASN1/tree/v2.5.0"
|
|
|
+ },
|
|
|
+ "abandoned": true,
|
|
|
+ "time": "2022-12-19T11:08:26+00:00"
|
|
|
+ },
|
|
|
{
|
|
|
"name": "firebase/php-jwt",
|
|
|
"version": "v6.10.0",
|
|
@@ -1389,13 +1702,7 @@
|
|
|
"type": "zip",
|
|
|
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
|
|
|
"reference": "d281ed313b989f213357e3be1a179f02196ac99b",
|
|
|
- "shasum": "",
|
|
|
- "mirrors": [
|
|
|
- {
|
|
|
- "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
|
|
- "preferred": true
|
|
|
- }
|
|
|
- ]
|
|
|
+ "shasum": ""
|
|
|
},
|
|
|
"require": {
|
|
|
"ext-json": "*",
|
|
@@ -2160,6 +2467,106 @@
|
|
|
},
|
|
|
"time": "2021-11-16T06:49:35+00:00"
|
|
|
},
|
|
|
+ {
|
|
|
+ "name": "kornrunner/keccak",
|
|
|
+ "version": "1.1.0",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/kornrunner/php-keccak.git",
|
|
|
+ "reference": "433749d28e117fb97baf9f2631b92b5d9ab3c890"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/kornrunner/php-keccak/zipball/433749d28e117fb97baf9f2631b92b5d9ab3c890",
|
|
|
+ "reference": "433749d28e117fb97baf9f2631b92b5d9ab3c890",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require": {
|
|
|
+ "php": ">=7.3",
|
|
|
+ "symfony/polyfill-mbstring": "^1.8"
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "phpunit/phpunit": "^8.2"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "autoload": {
|
|
|
+ "psr-4": {
|
|
|
+ "kornrunner\\": "src"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "MIT"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "Boris Momcilovic",
|
|
|
+ "homepage": "https://github.com/kornrunner/php-keccak"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "Pure PHP implementation of Keccak",
|
|
|
+ "keywords": [
|
|
|
+ "keccak",
|
|
|
+ "sha-3",
|
|
|
+ "sha3-256"
|
|
|
+ ],
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/kornrunner/php-keccak/issues",
|
|
|
+ "source": "https://github.com/kornrunner/php-keccak/tree/1.1.0"
|
|
|
+ },
|
|
|
+ "time": "2020-12-07T15:40:44+00:00"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "lastguest/murmurhash",
|
|
|
+ "version": "2.0.0",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/lastguest/murmurhash-php.git",
|
|
|
+ "reference": "4fb7516f67e695e5d7fa129d1bbb925ec0ebe408"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/lastguest/murmurhash-php/zipball/4fb7516f67e695e5d7fa129d1bbb925ec0ebe408",
|
|
|
+ "reference": "4fb7516f67e695e5d7fa129d1bbb925ec0ebe408",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require": {
|
|
|
+ "php": "^7"
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "phpstan/phpstan": "^0.6.3",
|
|
|
+ "phpunit/phpunit": "^5"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "autoload": {
|
|
|
+ "psr-4": {
|
|
|
+ "lastguest\\": "src/lastguest/"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "MIT"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "Stefano Azzolini",
|
|
|
+ "email": "lastguest@gmail.com",
|
|
|
+ "homepage": "https://github.com/lastguest/murmurhash-php"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "MurmurHash3 Hash",
|
|
|
+ "homepage": "https://github.com/lastguest/murmurhash-php",
|
|
|
+ "keywords": [
|
|
|
+ "hash",
|
|
|
+ "hashing",
|
|
|
+ "murmur"
|
|
|
+ ],
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/lastguest/murmurhash-php/issues",
|
|
|
+ "source": "https://github.com/lastguest/murmurhash-php/tree/master"
|
|
|
+ },
|
|
|
+ "time": "2017-10-10T15:16:12+00:00"
|
|
|
+ },
|
|
|
{
|
|
|
"name": "league/flysystem",
|
|
|
"version": "1.1.10",
|
|
@@ -2642,6 +3049,83 @@
|
|
|
},
|
|
|
"time": "2022-12-02T22:17:43+00:00"
|
|
|
},
|
|
|
+ {
|
|
|
+ "name": "mdanter/ecc",
|
|
|
+ "version": "v0.5.2",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/phpecc/phpecc.git",
|
|
|
+ "reference": "b95f25cc1bacc83a9f0ccd375900b7cfd343029e"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/phpecc/phpecc/zipball/b95f25cc1bacc83a9f0ccd375900b7cfd343029e",
|
|
|
+ "reference": "b95f25cc1bacc83a9f0ccd375900b7cfd343029e",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require": {
|
|
|
+ "ext-gmp": "*",
|
|
|
+ "fgrosse/phpasn1": "^2.0",
|
|
|
+ "php": "^7.0"
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "phpunit/phpunit": "^6.0",
|
|
|
+ "squizlabs/php_codesniffer": "^2.0",
|
|
|
+ "symfony/yaml": "^2.6|^3.0"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "autoload": {
|
|
|
+ "psr-4": {
|
|
|
+ "Mdanter\\Ecc\\": "src/"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "MIT"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "Matyas Danter",
|
|
|
+ "homepage": "http://matejdanter.com/",
|
|
|
+ "role": "Author"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "Thibaud Fabre",
|
|
|
+ "email": "thibaud@aztech.io",
|
|
|
+ "homepage": "http://aztech.io",
|
|
|
+ "role": "Maintainer"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "Thomas Kerin",
|
|
|
+ "email": "afk11@users.noreply.github.com",
|
|
|
+ "role": "Maintainer"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "PHP Elliptic Curve Cryptography library",
|
|
|
+ "homepage": "https://github.com/phpecc/phpecc",
|
|
|
+ "keywords": [
|
|
|
+ "Diffie",
|
|
|
+ "ECDSA",
|
|
|
+ "Hellman",
|
|
|
+ "curve",
|
|
|
+ "ecdh",
|
|
|
+ "elliptic",
|
|
|
+ "nistp192",
|
|
|
+ "nistp224",
|
|
|
+ "nistp256",
|
|
|
+ "nistp384",
|
|
|
+ "nistp521",
|
|
|
+ "phpecc",
|
|
|
+ "secp256k1",
|
|
|
+ "secp256r1"
|
|
|
+ ],
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/phpecc/phpecc/issues",
|
|
|
+ "source": "https://github.com/phpecc/phpecc/tree/master"
|
|
|
+ },
|
|
|
+ "abandoned": "paragonie/ecc",
|
|
|
+ "time": "2018-12-03T18:17:01+00:00"
|
|
|
+ },
|
|
|
{
|
|
|
"name": "monolog/monolog",
|
|
|
"version": "2.10.0",
|
|
@@ -3386,16 +3870,96 @@
|
|
|
"tecnickcom/tcpdf": "^6.5"
|
|
|
},
|
|
|
"suggest": {
|
|
|
- "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
|
|
|
- "ext-intl": "PHP Internationalization Functions",
|
|
|
- "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
|
|
|
- "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
|
|
|
- "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
|
|
|
+ "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
|
|
|
+ "ext-intl": "PHP Internationalization Functions",
|
|
|
+ "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
|
|
|
+ "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
|
|
|
+ "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "autoload": {
|
|
|
+ "psr-4": {
|
|
|
+ "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "MIT"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "Maarten Balliauw",
|
|
|
+ "homepage": "https://blog.maartenballiauw.be"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "Mark Baker",
|
|
|
+ "homepage": "https://markbakeruk.net"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "Franck Lefevre",
|
|
|
+ "homepage": "https://rootslabs.net"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "Erik Tilt"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "Adrien Crivelli"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
|
|
|
+ "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
|
|
|
+ "keywords": [
|
|
|
+ "OpenXML",
|
|
|
+ "excel",
|
|
|
+ "gnumeric",
|
|
|
+ "ods",
|
|
|
+ "php",
|
|
|
+ "spreadsheet",
|
|
|
+ "xls",
|
|
|
+ "xlsx"
|
|
|
+ ],
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
|
|
|
+ "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.4"
|
|
|
+ },
|
|
|
+ "time": "2024-11-10T16:26:22+00:00"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "phpseclib/phpseclib",
|
|
|
+ "version": "2.0.48",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/phpseclib/phpseclib.git",
|
|
|
+ "reference": "eaa7be704b8b93a6913b69eb7f645a59d7731b61"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/eaa7be704b8b93a6913b69eb7f645a59d7731b61",
|
|
|
+ "reference": "eaa7be704b8b93a6913b69eb7f645a59d7731b61",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require": {
|
|
|
+ "php": ">=5.3.3"
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "phing/phing": "~2.7",
|
|
|
+ "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
|
|
|
+ "squizlabs/php_codesniffer": "~2.0"
|
|
|
+ },
|
|
|
+ "suggest": {
|
|
|
+ "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
|
|
|
+ "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
|
|
|
+ "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
|
|
|
+ "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.",
|
|
|
+ "ext-xml": "Install the XML extension to load XML formatted public keys."
|
|
|
},
|
|
|
"type": "library",
|
|
|
"autoload": {
|
|
|
+ "files": [
|
|
|
+ "phpseclib/bootstrap.php"
|
|
|
+ ],
|
|
|
"psr-4": {
|
|
|
- "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
|
|
|
+ "phpseclib\\": "phpseclib/"
|
|
|
}
|
|
|
},
|
|
|
"notification-url": "https://packagist.org/downloads/",
|
|
@@ -3404,41 +3968,71 @@
|
|
|
],
|
|
|
"authors": [
|
|
|
{
|
|
|
- "name": "Maarten Balliauw",
|
|
|
- "homepage": "https://blog.maartenballiauw.be"
|
|
|
+ "name": "Jim Wigginton",
|
|
|
+ "email": "terrafrost@php.net",
|
|
|
+ "role": "Lead Developer"
|
|
|
},
|
|
|
{
|
|
|
- "name": "Mark Baker",
|
|
|
- "homepage": "https://markbakeruk.net"
|
|
|
+ "name": "Patrick Monnerat",
|
|
|
+ "email": "pm@datasphere.ch",
|
|
|
+ "role": "Developer"
|
|
|
},
|
|
|
{
|
|
|
- "name": "Franck Lefevre",
|
|
|
- "homepage": "https://rootslabs.net"
|
|
|
+ "name": "Andreas Fischer",
|
|
|
+ "email": "bantu@phpbb.com",
|
|
|
+ "role": "Developer"
|
|
|
},
|
|
|
{
|
|
|
- "name": "Erik Tilt"
|
|
|
+ "name": "Hans-Jürgen Petrich",
|
|
|
+ "email": "petrich@tronic-media.com",
|
|
|
+ "role": "Developer"
|
|
|
},
|
|
|
{
|
|
|
- "name": "Adrien Crivelli"
|
|
|
+ "name": "Graham Campbell",
|
|
|
+ "email": "graham@alt-three.com",
|
|
|
+ "role": "Developer"
|
|
|
}
|
|
|
],
|
|
|
- "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
|
|
|
- "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
|
|
|
+ "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
|
|
|
+ "homepage": "http://phpseclib.sourceforge.net",
|
|
|
"keywords": [
|
|
|
- "OpenXML",
|
|
|
- "excel",
|
|
|
- "gnumeric",
|
|
|
- "ods",
|
|
|
- "php",
|
|
|
- "spreadsheet",
|
|
|
- "xls",
|
|
|
- "xlsx"
|
|
|
+ "BigInteger",
|
|
|
+ "aes",
|
|
|
+ "asn.1",
|
|
|
+ "asn1",
|
|
|
+ "blowfish",
|
|
|
+ "crypto",
|
|
|
+ "cryptography",
|
|
|
+ "encryption",
|
|
|
+ "rsa",
|
|
|
+ "security",
|
|
|
+ "sftp",
|
|
|
+ "signature",
|
|
|
+ "signing",
|
|
|
+ "ssh",
|
|
|
+ "twofish",
|
|
|
+ "x.509",
|
|
|
+ "x509"
|
|
|
],
|
|
|
"support": {
|
|
|
- "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
|
|
|
- "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.4"
|
|
|
+ "issues": "https://github.com/phpseclib/phpseclib/issues",
|
|
|
+ "source": "https://github.com/phpseclib/phpseclib/tree/2.0.48"
|
|
|
},
|
|
|
- "time": "2024-11-10T16:26:22+00:00"
|
|
|
+ "funding": [
|
|
|
+ {
|
|
|
+ "url": "https://github.com/terrafrost",
|
|
|
+ "type": "github"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "url": "https://www.patreon.com/phpseclib",
|
|
|
+ "type": "patreon"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
|
|
|
+ "type": "tidelift"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "time": "2024-12-14T21:03:54+00:00"
|
|
|
},
|
|
|
{
|
|
|
"name": "pimple/pimple",
|
|
@@ -3499,6 +4093,53 @@
|
|
|
},
|
|
|
"time": "2021-10-28T11:13:42+00:00"
|
|
|
},
|
|
|
+ {
|
|
|
+ "name": "pleonasm/merkle-tree",
|
|
|
+ "version": "1.0.0",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/pleonasm/merkle-tree.git",
|
|
|
+ "reference": "9ddc9d0a0e396750fada378f3aa90f6c02dd56a1"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/pleonasm/merkle-tree/zipball/9ddc9d0a0e396750fada378f3aa90f6c02dd56a1",
|
|
|
+ "reference": "9ddc9d0a0e396750fada378f3aa90f6c02dd56a1",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require": {
|
|
|
+ "php": ">=5.4.0"
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "ext-xdebug": ">=2.2.0",
|
|
|
+ "phpunit/php-invoker": ">=1.0.0,<1.2.0",
|
|
|
+ "phpunit/phpunit": "3.7.19",
|
|
|
+ "satooshi/php-coveralls": "*@dev",
|
|
|
+ "squizlabs/php_codesniffer": "*"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "autoload": {
|
|
|
+ "psr-0": {
|
|
|
+ "Pleo": "src/"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "BSD-2-Clause"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "Matthew Nagi",
|
|
|
+ "email": "matthew.nagi@base-2.net"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "An implementation of a Merkle Tree in PHP",
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/pleonasm/merkle-tree/issues",
|
|
|
+ "source": "https://github.com/pleonasm/merkle-tree/tree/master"
|
|
|
+ },
|
|
|
+ "time": "2013-05-22T20:46:20+00:00"
|
|
|
+ },
|
|
|
{
|
|
|
"name": "psr/cache",
|
|
|
"version": "1.0.1",
|
|
@@ -4278,6 +4919,153 @@
|
|
|
],
|
|
|
"time": "2023-11-16T16:16:50+00:00"
|
|
|
},
|
|
|
+ {
|
|
|
+ "name": "simplito/bigint-wrapper-php",
|
|
|
+ "version": "1.0.0",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/simplito/bigint-wrapper-php.git",
|
|
|
+ "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/simplito/bigint-wrapper-php/zipball/cf21ec76d33f103add487b3eadbd9f5033a25930",
|
|
|
+ "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "autoload": {
|
|
|
+ "psr-4": {
|
|
|
+ "BI\\": "lib/"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "MIT"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "Simplito Team",
|
|
|
+ "email": "s.smyczynski@simplito.com",
|
|
|
+ "homepage": "https://simplito.com"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "Common interface for php_gmp and php_bcmath modules",
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/simplito/bigint-wrapper-php/issues",
|
|
|
+ "source": "https://github.com/simplito/bigint-wrapper-php/tree/1.0.0"
|
|
|
+ },
|
|
|
+ "time": "2018-02-27T12:38:08+00:00"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "simplito/bn-php",
|
|
|
+ "version": "1.1.4",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/simplito/bn-php.git",
|
|
|
+ "reference": "83446756a81720eacc2ffb87ff97958431451fd6"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/simplito/bn-php/zipball/83446756a81720eacc2ffb87ff97958431451fd6",
|
|
|
+ "reference": "83446756a81720eacc2ffb87ff97958431451fd6",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require": {
|
|
|
+ "simplito/bigint-wrapper-php": "~1.0.0"
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "phpunit/phpunit": "*"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "autoload": {
|
|
|
+ "psr-4": {
|
|
|
+ "BN\\": "lib/"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "MIT"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "Simplito Team",
|
|
|
+ "email": "s.smyczynski@simplito.com",
|
|
|
+ "homepage": "https://simplito.com"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "Big number implementation compatible with bn.js",
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/simplito/bn-php/issues",
|
|
|
+ "source": "https://github.com/simplito/bn-php/tree/1.1.4"
|
|
|
+ },
|
|
|
+ "time": "2024-01-10T16:16:59+00:00"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "simplito/elliptic-php",
|
|
|
+ "version": "1.0.12",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/simplito/elliptic-php.git",
|
|
|
+ "reference": "be321666781be2be2c89c79c43ffcac834bc8868"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/simplito/elliptic-php/zipball/be321666781be2be2c89c79c43ffcac834bc8868",
|
|
|
+ "reference": "be321666781be2be2c89c79c43ffcac834bc8868",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require": {
|
|
|
+ "ext-gmp": "*",
|
|
|
+ "simplito/bn-php": "~1.1.0"
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "phpbench/phpbench": "@dev",
|
|
|
+ "phpunit/phpunit": "*"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "autoload": {
|
|
|
+ "psr-4": {
|
|
|
+ "Elliptic\\": "lib/"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "MIT"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "Simplito Team",
|
|
|
+ "email": "s.smyczynski@simplito.com",
|
|
|
+ "homepage": "https://simplito.com"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "Fast elliptic curve cryptography",
|
|
|
+ "homepage": "https://github.com/simplito/elliptic-php",
|
|
|
+ "keywords": [
|
|
|
+ "Curve25519",
|
|
|
+ "ECDSA",
|
|
|
+ "Ed25519",
|
|
|
+ "EdDSA",
|
|
|
+ "cryptography",
|
|
|
+ "curve",
|
|
|
+ "curve25519-weier",
|
|
|
+ "ecc",
|
|
|
+ "ecdh",
|
|
|
+ "elliptic",
|
|
|
+ "nistp192",
|
|
|
+ "nistp224",
|
|
|
+ "nistp256",
|
|
|
+ "nistp384",
|
|
|
+ "nistp521",
|
|
|
+ "secp256k1"
|
|
|
+ ],
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/simplito/elliptic-php/issues",
|
|
|
+ "source": "https://github.com/simplito/elliptic-php/tree/1.0.12"
|
|
|
+ },
|
|
|
+ "time": "2024-01-09T14:57:04+00:00"
|
|
|
+ },
|
|
|
{
|
|
|
"name": "stechstudio/backoff",
|
|
|
"version": "1.2.1",
|
|
@@ -6393,6 +7181,143 @@
|
|
|
},
|
|
|
"time": "2023-03-09T07:52:09+00:00"
|
|
|
},
|
|
|
+ {
|
|
|
+ "name": "web3p/ethereum-tx",
|
|
|
+ "version": "0.4.3",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/web3p/ethereum-tx.git",
|
|
|
+ "reference": "8dc1adc10ae45ac440c43ac32a3c5adf63ed8cef"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/web3p/ethereum-tx/zipball/8dc1adc10ae45ac440c43ac32a3c5adf63ed8cef",
|
|
|
+ "reference": "8dc1adc10ae45ac440c43ac32a3c5adf63ed8cef",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require": {
|
|
|
+ "kornrunner/keccak": "~1",
|
|
|
+ "php": "^7.1|^8.0",
|
|
|
+ "simplito/elliptic-php": "~1.0.6",
|
|
|
+ "web3p/ethereum-util": "~0.1.3",
|
|
|
+ "web3p/rlp": "0.3.4"
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "phpunit/phpunit": "~7|~8.0"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "autoload": {
|
|
|
+ "psr-4": {
|
|
|
+ "Web3p\\EthereumTx\\": "src/"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "MIT"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "sc0Vu",
|
|
|
+ "email": "alk03073135@gmail.com"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "Ethereum transaction library in PHP.",
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/web3p/ethereum-tx/issues",
|
|
|
+ "source": "https://github.com/web3p/ethereum-tx/tree/0.4.3"
|
|
|
+ },
|
|
|
+ "time": "2021-09-01T05:13:20+00:00"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "web3p/ethereum-util",
|
|
|
+ "version": "0.1.4",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/web3p/ethereum-util.git",
|
|
|
+ "reference": "9a01f5389835d4092d338bb7b7d119017052ca68"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/web3p/ethereum-util/zipball/9a01f5389835d4092d338bb7b7d119017052ca68",
|
|
|
+ "reference": "9a01f5389835d4092d338bb7b7d119017052ca68",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require": {
|
|
|
+ "kornrunner/keccak": "~1",
|
|
|
+ "php": "^7.1 | ^8.0",
|
|
|
+ "phpseclib/phpseclib": "~2.0",
|
|
|
+ "simplito/elliptic-php": "~1.0.6"
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "phpunit/phpunit": "~7 | ~8.0"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "autoload": {
|
|
|
+ "psr-4": {
|
|
|
+ "Web3p\\EthereumUtil\\": "src/"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "MIT"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "sc0Vu",
|
|
|
+ "email": "alk03073135@gmail.com"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "A collection of utility functions for Ethereum written in PHP.",
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/web3p/ethereum-util/issues",
|
|
|
+ "source": "https://github.com/web3p/ethereum-util/tree/0.1.4"
|
|
|
+ },
|
|
|
+ "time": "2022-12-18T05:42:39+00:00"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "web3p/rlp",
|
|
|
+ "version": "0.3.4",
|
|
|
+ "source": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/web3p/rlp.git",
|
|
|
+ "reference": "1653af23142863b490bdf22c6d0335bdb588c983"
|
|
|
+ },
|
|
|
+ "dist": {
|
|
|
+ "type": "zip",
|
|
|
+ "url": "https://api.github.com/repos/web3p/rlp/zipball/1653af23142863b490bdf22c6d0335bdb588c983",
|
|
|
+ "reference": "1653af23142863b490bdf22c6d0335bdb588c983",
|
|
|
+ "shasum": ""
|
|
|
+ },
|
|
|
+ "require": {
|
|
|
+ "ext-mbstring": "*",
|
|
|
+ "php": "^7.1 | ^8.0"
|
|
|
+ },
|
|
|
+ "require-dev": {
|
|
|
+ "phpunit/phpunit": "~7|~8.0"
|
|
|
+ },
|
|
|
+ "type": "library",
|
|
|
+ "autoload": {
|
|
|
+ "psr-4": {
|
|
|
+ "Web3p\\RLP\\": "src/"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "notification-url": "https://packagist.org/downloads/",
|
|
|
+ "license": [
|
|
|
+ "MIT"
|
|
|
+ ],
|
|
|
+ "authors": [
|
|
|
+ {
|
|
|
+ "name": "sc0Vu",
|
|
|
+ "email": "alk03073135@gmail.com"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "Recursive Length Prefix Encoding in PHP.",
|
|
|
+ "support": {
|
|
|
+ "issues": "https://github.com/web3p/rlp/issues",
|
|
|
+ "source": "https://github.com/web3p/rlp/tree/0.3.4"
|
|
|
+ },
|
|
|
+ "time": "2021-08-30T10:22:03+00:00"
|
|
|
+ },
|
|
|
{
|
|
|
"name": "yurunsoft/composer-include-files",
|
|
|
"version": "v2.0.0",
|