Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"php": "^8.1 || ^8.2 || ^8.3",
"ext-json": "*",
"ext-reflection": "*",
"bitpay/key-utils": "^1.1",
"bitpay/key-utils": "^2.0",
"guzzlehttp/guzzle": "^7.0",
"symfony/yaml": "^5.4 || ^6.0 || ^7.0",
"netresearch/jsonmapper": "^4.1",
Expand Down
113 changes: 57 additions & 56 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/classes/BitPaySDK-Env.html
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ <h4 id="toc-constants">
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
<a class="" href="classes/BitPaySDK-Env.html#constant_BITPAY_PLUGIN_INFO">BITPAY_PLUGIN_INFO</a>
<span>
&nbsp;= &quot;BitPay_PHP_Client_v9.1.3&quot; </span>
&nbsp;= &quot;BitPay_PHP_Client_v9.1.4&quot; </span>
</dt>

<dt class="phpdocumentor-table-of-contents__entry -constant -public">
Expand Down Expand Up @@ -371,7 +371,7 @@ <h4 class="phpdocumentor-element__name" id="constant_BITPAY_PLUGIN_INFO">
<span class="phpdocumentor-signature__visibility">public</span>
<span class="phpdocumentor-signature__type">mixed</span>
<span class="phpdocumentor-signature__name">BITPAY_PLUGIN_INFO</span>
= <span class="phpdocumentor-signature__default-value">&quot;BitPay_PHP_Client_v9.1.3&quot;</span>
= <span class="phpdocumentor-signature__default-value">&quot;BitPay_PHP_Client_v9.1.4&quot;</span>
</code>


Expand Down
3 changes: 3 additions & 0 deletions docs/css/template.css
Original file line number Diff line number Diff line change
Expand Up @@ -273,3 +273,6 @@
.phpdocumentor-tag-link {
margin-right: var(--spacing-sm);
}
.phpdocumentor-uml-diagram svg {
cursor: zoom-in;
}
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>BitPay PHP SDK</title>

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<base href="./">
<link rel="icon" href="images/favicon.ico"/>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/base.css">
Expand Down
17 changes: 17 additions & 0 deletions docs/js/template.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,20 @@
observer.observe(el);
})
})();
function openSvg(svg) {
// convert to a valid XML source
const as_text = new XMLSerializer().serializeToString(svg);
// store in a Blob
const blob = new Blob([as_text], { type: "image/svg+xml" });
// create an URI pointing to that blob
const url = URL.createObjectURL(blob);
const win = open(url);
// so the Garbage Collector can collect the blob
win.onload = (evt) => URL.revokeObjectURL(url);
};


var svgs = document.querySelectorAll(".phpdocumentor-uml-diagram svg");
for( var i=0,il = svgs.length; i< il; i ++ ) {
svgs[i].onclick = (evt) => openSvg(evt.target);
}
2 changes: 1 addition & 1 deletion phpdoc.dist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<output>docs</output>
</paths>

<version number="9.1.3">
<version number="9.1.4">
<api format="php">
<source dsn=".">
<path>src</path>
Expand Down
Loading
Loading