File tree Expand file tree Collapse file tree 8 files changed +83
-62
lines changed Expand file tree Collapse file tree 8 files changed +83
-62
lines changed Original file line number Diff line number Diff line change 15
15
"php" : " ^8.1 || ^8.2 || ^8.3" ,
16
16
"ext-json" : " *" ,
17
17
"ext-reflection" : " *" ,
18
- "bitpay/key-utils" : " ^1.1 " ,
18
+ "bitpay/key-utils" : " ^2.0 " ,
19
19
"guzzlehttp/guzzle" : " ^7.0" ,
20
20
"symfony/yaml" : " ^5.4 || ^6.0 || ^7.0" ,
21
21
"netresearch/jsonmapper" : " ^4.1" ,
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ <h4 id="toc-constants">
216
216
< dt class ="phpdocumentor-table-of-contents__entry -constant -public ">
217
217
< a class ="" href ="classes/BitPaySDK-Env.html#constant_BITPAY_PLUGIN_INFO "> BITPAY_PLUGIN_INFO</ a >
218
218
< span >
219
- = "BitPay_PHP_Client_v9.1.3 " </ span >
219
+ = "BitPay_PHP_Client_v9.1.4 " </ span >
220
220
</ dt >
221
221
222
222
< dt class ="phpdocumentor-table-of-contents__entry -constant -public ">
@@ -371,7 +371,7 @@ <h4 class="phpdocumentor-element__name" id="constant_BITPAY_PLUGIN_INFO">
371
371
< span class ="phpdocumentor-signature__visibility "> public</ span >
372
372
< span class ="phpdocumentor-signature__type "> mixed</ span >
373
373
< span class ="phpdocumentor-signature__name "> BITPAY_PLUGIN_INFO</ span >
374
- = < span class ="phpdocumentor-signature__default-value "> "BitPay_PHP_Client_v9.1.3 "</ span >
374
+ = < span class ="phpdocumentor-signature__default-value "> "BitPay_PHP_Client_v9.1.4 "</ span >
375
375
</ code >
376
376
377
377
Original file line number Diff line number Diff line change 273
273
.phpdocumentor-tag-link {
274
274
margin-right : var (--spacing-sm );
275
275
}
276
+ .phpdocumentor-uml-diagram svg {
277
+ cursor : zoom-in;
278
+ }
Original file line number Diff line number Diff line change 5
5
< title > BitPay PHP SDK</ title >
6
6
7
7
< meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
8
-
8
+ < base href =" ./ " >
9
9
< link rel ="icon " href ="images/favicon.ico "/>
10
10
< link rel ="stylesheet " href ="css/normalize.css ">
11
11
< link rel ="stylesheet " href ="css/base.css ">
Original file line number Diff line number Diff line change 15
15
observer . observe ( el ) ;
16
16
} )
17
17
} ) ( ) ;
18
+ function openSvg ( svg ) {
19
+ // convert to a valid XML source
20
+ const as_text = new XMLSerializer ( ) . serializeToString ( svg ) ;
21
+ // store in a Blob
22
+ const blob = new Blob ( [ as_text ] , { type : "image/svg+xml" } ) ;
23
+ // create an URI pointing to that blob
24
+ const url = URL . createObjectURL ( blob ) ;
25
+ const win = open ( url ) ;
26
+ // so the Garbage Collector can collect the blob
27
+ win . onload = ( evt ) => URL . revokeObjectURL ( url ) ;
28
+ } ;
29
+
30
+
31
+ var svgs = document . querySelectorAll ( ".phpdocumentor-uml-diagram svg" ) ;
32
+ for ( var i = 0 , il = svgs . length ; i < il ; i ++ ) {
33
+ svgs [ i ] . onclick = ( evt ) => openSvg ( evt . target ) ;
34
+ }
Original file line number Diff line number Diff line change 10
10
<output >docs</output >
11
11
</paths >
12
12
13
- <version number =" 9.1.3 " >
13
+ <version number =" 9.1.4 " >
14
14
<api format =" php" >
15
15
<source dsn =" ." >
16
16
<path >src</path >
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ interface Env
17
17
public const TEST_URL = "https://test.bitpay.com/ " ;
18
18
public const PROD_URL = "https://bitpay.com/ " ;
19
19
public const BITPAY_API_VERSION = "2.0.0 " ;
20
- public const BITPAY_PLUGIN_INFO = "BitPay_PHP_Client_v9.1.3 " ;
20
+ public const BITPAY_PLUGIN_INFO = "BitPay_PHP_Client_v9.1.4 " ;
21
21
public const BITPAY_API_FRAME = "std " ;
22
22
public const BITPAY_API_FRAME_VERSION = "1.0.0 " ;
23
23
}
You can’t perform that action at this time.
0 commit comments