Joywork/api/v2/index.php

9 lines
294 B
PHP
Raw Normal View History

2026-05-22 20:21:54 +02:00
<?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';