add open orders api route
All checks were successful
/ ls (pull_request) Successful in 1m31s
/ ls (push) Successful in 1m25s
/ ls (release) Successful in 1m0s

This commit is contained in:
lubiana 2025-04-23 18:56:59 +02:00
parent 5de80b0da0
commit 96b246462a
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk
5 changed files with 79 additions and 0 deletions

View file

@ -1,6 +1,7 @@
<?php declare(strict_types=1);
use Symfony\Component\Dotenv\Dotenv;
use Symfony\Component\Filesystem\Filesystem;
require dirname(__DIR__) . '/vendor/autoload.php';
@ -13,3 +14,6 @@ if (method_exists(Dotenv::class, 'bootEnv')) {
if ($_SERVER['APP_DEBUG']) {
umask(0o000);
}
$fs = new Filesystem;
$fs->remove(dirname(__DIR__) . '/../var/cache/*');