mirror of
https://github.com/YGGverse/yggverse.github.io.git
synced 2025-01-15 17:40:06 +00:00
28 lines
639 B
Plaintext
28 lines
639 B
Plaintext
|
# Release gemini-php 0.6.0
|
||
|
|
||
|
Add stream context options support
|
||
|
|
||
|
## Example
|
||
|
|
||
|
``` php
|
||
|
$request = new \Yggverse\Gemini\Client\Request(
|
||
|
'gemini://yggverse.cities.yesterweb.org',
|
||
|
'68.133.1.71' // make direct request to the resolved host
|
||
|
);
|
||
|
|
||
|
$request->setOptions(
|
||
|
[
|
||
|
'ssl' =>
|
||
|
[
|
||
|
'peer_name' => 'yggverse.cities.yesterweb.org', // SNI
|
||
|
'verify_peer' => false,
|
||
|
'verify_peer_name' => false
|
||
|
]
|
||
|
]
|
||
|
);
|
||
|
```
|
||
|
|
||
|
## Links
|
||
|
|
||
|
=> https://github.com/YGGverse/gemini-php/releases/tag/0.6.0 Download gemini-php 0.6.0
|
||
|
=> https://github.com/YGGverse/net-php Network Resolver in PHP 8
|