2026-07-25 21:23:28 +00:00
|
|
|
{
|
2026-07-25 21:49:43 +00:00
|
|
|
"name": "contractless/contractless-php-rpc",
|
2026-07-25 21:23:28 +00:00
|
|
|
"description": "Native PHP client for the Contractless blockchain RPC protocol.",
|
|
|
|
|
"type": "library",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"require": {
|
|
|
|
|
"php": ">=8.1",
|
2026-07-25 22:38:40 +00:00
|
|
|
"ext-gd": "*",
|
2026-07-25 21:23:28 +00:00
|
|
|
"ext-json": "*",
|
2026-07-25 22:38:40 +00:00
|
|
|
"ext-openssl": "*",
|
2026-07-25 21:23:28 +00:00
|
|
|
"ext-oqsphp": "*",
|
|
|
|
|
"ext-skein": "*"
|
|
|
|
|
},
|
|
|
|
|
"autoload": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"Contractless\\Rpc\\": "src/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"autoload-dev": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"Contractless\\Rpc\\Tests\\": "tests/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"test": "php tests/run.php"
|
|
|
|
|
}
|
|
|
|
|
}
|