Joywork/api/v1/index.php
2026-05-22 21:21:54 +03:00

10 lines
298 B
PHP

<?php
if ('cli-server' === PHP_SAPI && is_file(__DIR__.$_SERVER['REQUEST_URI'])) {
// To help the built-in PHP dev server, check if the request was actually for
// something which should probably be served as a static file
return false;
}
require __DIR__.'/../app/src/bootstrap.php';