12 lines
266 B
PHP
12 lines
266 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
header('Content-Type: application/json; charset=utf-8');
|
|
http_response_code(200);
|
|
|
|
echo json_encode([
|
|
'status' => 'ok',
|
|
'service' => 'portfolio-site',
|
|
'time' => gmdate('c'),
|
|
], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
|