11 lines
271 B
PHP
11 lines
271 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
require_once __DIR__ . '/includes/app.php';
|
|
app_boot();
|
|
header('Content-Type: application/json');
|
|
echo json_encode([
|
|
'status' => 'ok',
|
|
'time' => gmdate('c'),
|
|
'php' => PHP_VERSION,
|
|
], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
|