Gemini Protocol library for PHP 8
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
852 B

4 years ago
# Titan II
Gemini Protocol library for PHP 8
4 years ago
- [gemini://gemini.circumlunar.space/](gemini://gemini.circumlunar.space/)
- [https://gemini.circumlunar.space/](https://gemini.circumlunar.space/)
## Install
1. `composer require yggverse/titan-ii`
10 months ago
2. `openssl req -x509 -newkey rsa:4096 -keyout key.rsa -out cert.pem -days 1 -nodes -subj "/CN=IP"`
3. `php server.php`
10 months ago
4. `gemini://[IP]`
## Usage
4 years ago
```
<?php
10 months ago
$server = new \Yggverse\TitanII\Server();
4 years ago
$server->setCert('cert.pem');
$server->setKey('key.rsa');
$server->setHandler(
10 months ago
function (\Yggverse\TitanII\Request $request): \Yggverse\TitanII\Response
{
10 months ago
$response = new \Yggverse\TitanII\Response();
4 years ago
$response->setCode(20);
$response->setMeta('text/plain');
$response->setContent('Hello World!');
4 years ago
return $response;
}
);
4 years ago
$server->start();
```