diff --git a/.env.example b/.env.example index 26635e8..5cc6cd5 100644 --- a/.env.example +++ b/.env.example @@ -82,13 +82,27 @@ MAPA_URL= JWT_SECRET= -#### RABBITMW #### -RABBITMQ_DEFAULT_HOST= -RABBITMQ_DEFAULT_PORT= -RABBITMQ_DEFAULT_USER= -RABBITMQ_DEFAULT_PASS= -RABBITMQ_EXCHANGE_PLUGINS= -RABBITMQ_QUEUE_OPINIONS_PUBLISHED= -RABBITMQ_QUEUE_PC= -RABBITMQ_QUEUE_PC_ROUTE_KEY_PROP= -RABBITMQ_QUEUE_PC_ROUTE_KEY_ADM= +#### RABBITMQ #### +RABBITMQ_DEFAULT_HOST=ip_ou_host +RABBITMQ_DEFAULT_PORT=5672 +RABBITMQ_DEFAULT_USER=user +RABBITMQ_DEFAULT_PASS=pass +RABBITMQ_ENABLED=true +RABBITMQ_EXCHANGE_DEFAULT=RABBITMQ_EXCHANGE_DEFAULT +RABBITMQ_QUEUE_PUBLISHED_RECOURSES=RABBITMQ_QUEUE_PUBLISHED_RECOURSES +QUEUE_OPINION_MANAGEMENT=QUEUE_OPINION_MANAGEMENT +QUEUE_PUBLISHED_RECOURSES=QUEUE_PUBLISHED_RECOURSES +QUEUE_IMPORT_REGISTRATION=QUEUE_IMPORT_REGISTRATION +MODULE_IMPORT_REGISTRATION_DRAFT=MODULE_IMPORT_REGISTRATION_DRAFT +QUEUE_ACCOUNTABILITY=QUEUE_ACCOUNTABILITY +MODULE_ACCOUNTABILITY_ADM=MODULE_ACCOUNTABILITY_ADM +MODULE_ACCOUNTABILITY_PROPONENT=MODULE_ACCOUNTABILITY_PROPONENT +PLUGIN_PUBLISHED_RECOURSES=PLUGIN_PUBLISHED_RECOURSES + +## EMAIL +FORWARD_MAILPIT_DASHBOARD_PORT=8026 +## SENTRY +SENTRY_LARAVEL_DSN=https://link_do_sentry +SENTRY_SEND_DEFAULT_PII=true +SENTRY_TRACES_SAMPLE_RATE=1.0 + diff --git a/.env.testing b/.env.testing index ca63c86..19c1fe5 100644 --- a/.env.testing +++ b/.env.testing @@ -20,11 +20,11 @@ LOG_DEPRECATIONS_CHANNEL=null LOG_LEVEL=debug DB_CONNECTION=pgsql -DB_HOST=db-email -DB_PORT=5432 -DB_DATABASE=api_email_test -DB_USERNAME=api_email -DB_PASSWORD=pass +DB_HOST=ip_ou_servico +DB_PORT=5433 +DB_DATABASE=api_email +DB_USERNAME=postgres +DB_PASSWORD=12345678 SESSION_DRIVER=database SESSION_LIFETIME=120 @@ -82,17 +82,35 @@ NGINX_PHP_UPSTREAM_CONTAINER=php-fpm NGINX_PHP_UPSTREAM_PORT=9000 NGINX_SSL_PATH=./docker/nginx/ssl/ ### PARA AS FILAS -MAPA_URL=http://172.19.18.213:8088/ +MAPA_URL=MAPA_URL #### RABBITMW #### -RABBITMQ_DEFAULT_HOST=rabbitmq +RABBITMQ_DEFAULT_HOST=ip_ou_servico RABBITMQ_DEFAULT_PORT=5672 -RABBITMQ_DEFAULT_USER=mqadmin -RABBITMQ_DEFAULT_PASS=Admin123XX_ -RABBITMQ_EXCHANGE_PLUGINS=pluginsTest -RABBITMQ_QUEUE_OPINIONS_PUBLISHED=opinionsPublishedTest -RABBITMQ_QUEUE_PC=msgs -RABBITMQ_QUEUE_PC_ROUTE_KEY_PROP=proponente -RABBITMQ_QUEUE_PC_ROUTE_KEY_ADM=resposta - -JWT_SECRET=5l8Zu5i5HLFLtd1p4S8r5uk29hblJLLlr6P8jYsVj04n0354No5BtCqSudwk7sSM +RABBITMQ_DEFAULT_USER=user +RABBITMQ_DEFAULT_PASS=pass +RABBITMQ_ENABLED=true +RABBITMQ_EXCHANGE_DEFAULT=exchange_notification +QUEUE_OPINION_MANAGEMENT=queue_opinion_management +QUEUE_PUBLISHED_RECOURSES=queue_published_recourses +QUEUE_IMPORT_REGISTRATION=queue_import_registration +MODULE_IMPORT_REGISTRATION_DRAFT=module_import_registration_draft +QUEUE_ACCOUNTABILITY=queue_accountability +MODULE_ACCOUNTABILITY_ADM=module_accountability_adm +MODULE_ACCOUNTABILITY_PROPONENT=module_accountability_proponent +PLUGIN_PUBLISHED_RECOURSES=plugin_published_recourses + +JWT_SECRET=JWT_SECRET + +#### SENTRY #### +SENTRY_LARAVEL_DSN=https://dc2a046285a0767ee27902ea99506adc@o4508121592102912.ingest.us.sentry.io/4508160344915968 +SENTRY_SEND_DEFAULT_PII=true +SENTRY_TRACES_SAMPLE_RATE=1.0 + +### auditing +AUDITING_ENABLED=false +AUDITING_USER_MODEL=App\Models\User +AUDITING_USER_MORPH_PREFIX=user +AUDITING_AUDIT_MODEL=App\Models\Audit +AUDITING_THRESHOLD=0 +AUDITING_CONSOLE=true diff --git a/Dockerfile b/Dockerfile index 6323d13..d09d6ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,29 +1,43 @@ -FROM php:fpm-alpine3.20 +FROM php:8.4-fpm +ENV TZ=America/Fortaleza + +# Copia o código da aplicação para o contêiner COPY . /var/www/html -COPY --from=composer:latest /usr/bin/composer /usr/bin/composer -RUN apk add --no-cache \ - bash \ - curl \ +# Instala o Composer +COPY --from=composer:2 /usr/bin/composer /usr/bin/composer + +WORKDIR /var/www/html + +RUN apt-get update && apt-get install -y \ git \ nano \ + curl \ + supervisor \ libpng-dev \ - libpq \ + libjpeg-dev \ + libfreetype6-dev \ + libonig-dev \ libzip-dev \ - zlib-dev \ - linux-headers \ - postgresql-dev \ - # Extensões do PHP - && docker-php-ext-install \ - gd \ + unzip \ zip \ - pdo_pgsql \ - sockets \ - # Composer Install - && composer install \ - && chown -R www-data:www-data /var/www/html \ - # Limpeza dos pacotes - && docker-php-source delete + libxml2-dev \ + libpq-dev \ + libicu-dev \ + ca-certificates \ + xz-utils \ + gnupg \ + && docker-php-ext-configure gd --with-freetype --with-jpeg \ + && docker-php-ext-install gd \ + && docker-php-ext-install pdo pdo_mysql mbstring exif pcntl bcmath opcache intl zip sockets \ + && /usr/bin/composer install \ + && rm -rf /var/lib/apt/lists/* \ + && chown -R www-data:www-data /var/www/html + +COPY ./docker/production/supervisor/conf.d/* /etc/supervisor/conf.d/ +COPY ./docker/production/supervisor/supervisord.conf /etc/supervisor/supervisord.conf + +CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/supervisord.conf"] EXPOSE 9000 diff --git a/app/Console/Commands/ConsumePublishedOpinions.php b/app/Console/Commands/ConsumePublishedOpinions.php index f9f805b..772b738 100644 --- a/app/Console/Commands/ConsumePublishedOpinions.php +++ b/app/Console/Commands/ConsumePublishedOpinions.php @@ -16,11 +16,7 @@ class ConsumePublishedOpinions extends Command protected $description = 'Consome fila com usuários que deverão ser notificados que os pareceres foram publicados'; - public function __construct( - private readonly AmqpService $amqpService, - ) { - parent::__construct(); - } + /** * @throws \Exception diff --git a/app/Console/Commands/ConsumePublishedRecourseEmails.php b/app/Console/Commands/ConsumePublishedRecourseEmails.php index b05da36..f22ed4c 100644 --- a/app/Console/Commands/ConsumePublishedRecourseEmails.php +++ b/app/Console/Commands/ConsumePublishedRecourseEmails.php @@ -5,6 +5,7 @@ use App\Mail\PublishedRecourse; use Exception; use Illuminate\Console\Command; +use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\Mail; use PhpAmqpLib\Connection\AMQPStreamConnection; use PhpAmqpLib\Message\AMQPMessage; @@ -32,17 +33,44 @@ class ConsumePublishedRecourseEmails extends Command */ public function handle(): void { - $queue = config('app.rabbitmq.queues.published_recourses_queue'); + $queue = config('rabbitmq.queues.queue_published_recourses'); $connection = new AMQPStreamConnection( - config('app.rabbitmq.host'), - config('app.rabbitmq.port'), - config('app.rabbitmq.user'), - config('app.rabbitmq.pass'), + config('rabbitmq.host'), + config('rabbitmq.port'), + config('rabbitmq.user'), + config('rabbitmq.pass'), + '/', ); $channel = $connection->channel(); - $channel->queue_declare($queue, false, true, false, false); - $this->info('🎯 Aguardando e-mails para envio...'); + $channel->exchange_declare( + config('rabbitmq.exchange_default'), + 'direct', + false, + true, + false + ); + + $channel->queue_declare( + $queue, + false, // passive: false (cria se não existir) + true, // durable: true (igual à fila existente) + false, // exclusive: false (não deve ser exclusiva) + false, // auto_delete: false (não deletar automaticamente) + false, // nowait: false (espera confirmação) + null, // arguments: null (igual aos argumentos existentes) + null // ticket: null + ); + // Vinculando + $channel->queue_bind( + $queue, + config('rabbitmq.exchange_default'), + config('rabbitmq.routing.plugin_published_recourses') + ); + + + $this->info('🔄 Consumer iniciado. Aguardando mensagens...'); + Log::info('🔄 Consumer iniciado. Aguardando mensagens...'); $channel->basic_consume(queue: $queue, callback: $this->processMessage(...)); @@ -58,11 +86,10 @@ private function sendEmail($data): bool { try { Mail::to($data['email'])->send(new PublishedRecourse($data)); - return true; } catch (Exception $e) { - logger($e->getMessage()); - + \Sentry\captureMessage($e, \Sentry\Severity::info()); + Log::error('Erro ao processar a mensagem'); return false; } } @@ -74,10 +101,11 @@ protected function processMessage(AMQPMessage $msg): void if ($this->sendEmail($data)) { $msg->ack(); // Confirma o processamento $this->info("📧 E-mail enviado para: {$data['email']}"); - + Log::info("📧 E-mail enviado para: {$data['email']}"); return; } $this->error("❌ Falha ao enviar e-mail para: {$data['email']}"); + Log::error("❌ Falha ao enviar e-mail para: {$data['email']}"); } } diff --git a/app/Console/Commands/ConsumerCommand.php b/app/Console/Commands/ConsumerCommand.php index c51fa36..66cd80a 100644 --- a/app/Console/Commands/ConsumerCommand.php +++ b/app/Console/Commands/ConsumerCommand.php @@ -32,14 +32,16 @@ class ConsumerCommand extends Command */ public function handle(): int { - $queue = config('app.rabbitmq.queues.accountability'); + $queue = config('rabbitmq.queues.queue_accountability'); + $connection = new AMQPStreamConnection( - config('app.rabbitmq.host'), - config('app.rabbitmq.port'), - config('app.rabbitmq.user'), - config('app.rabbitmq.pass'), + config('rabbitmq.host'), + config('rabbitmq.port'), + config('rabbitmq.user'), + config('rabbitmq.pass'), '/', ); + $channel = $connection->channel(); $channel->queue_declare($queue, false, true, false, false); @@ -60,7 +62,7 @@ protected function processMessage(AMQPMessage $msg): void { $data = json_decode($msg->body); - if ($msg->getRoutingKey() == config('app.rabbitmq.route_key_prop')) { + if ($msg->getRoutingKey() == config('rabbitmq.routing.module_accountability_proponent')) { Mail::to($data->email)->send(new EmailRegistrationOpp( $data->name, $data->number, @@ -68,7 +70,7 @@ protected function processMessage(AMQPMessage $msg): void )); } - if ($msg->getRoutingKey() == config('app.rabbitmq.route_key_adm')) { + if ($msg->getRoutingKey() == config('rabbitmq.routing.module_accountability_adm')) { Mail::to($data->comission)->cc($data->owner)->send(new AnswerNotification( $data->registration )); diff --git a/app/Console/Commands/ImportRegistrationCommand.php b/app/Console/Commands/ImportRegistrationCommand.php new file mode 100644 index 0000000..1ec5793 --- /dev/null +++ b/app/Console/Commands/ImportRegistrationCommand.php @@ -0,0 +1,71 @@ +queueService = $queueService; + } + /** + * Execultando o comando no console + */ + public function handle() + { + $queue = config('rabbitmq.queues.queue_import_registration'); + $exchange = config('rabbitmq.exchange_default'); + $routingKey = config('rabbitmq.routing.module_import_registration_draft'); + $this->queueService->consume($queue, $exchange, $routingKey, function (AMQPMessage $msg) { + $this->processMessage($msg); + }); + } + + protected function processMessage(AMQPMessage $msg) + { + Log::info('Mensagem recebida: ' . $msg->getBody()); + + try { + $registrations = json_decode($msg->getBody(), true); + if (!is_array($registrations)) { + Log::error('Formato de mensagem inválido'); + return; + } + + foreach ($registrations as $registration) { + Mail::to($registration['agent_email'])->send(new ImporteRegistrationMail($registration)); + Log::info('Email enviado para ' . $registration['agent_email']); + + } + // Confirmar a mensagem após processamento + $msg->ack(); + } catch (\Exception $e) { + \Sentry\captureMessage($e, \Sentry\Severity::info()); + Log::error('Erro ao processar a mensagem'); + } + } +} diff --git a/app/Console/Commands/MakeCustomFilesCommand.php b/app/Console/Commands/MakeCustomFilesCommand.php new file mode 100644 index 0000000..35a554d --- /dev/null +++ b/app/Console/Commands/MakeCustomFilesCommand.php @@ -0,0 +1,141 @@ +argument('name'); + $this->createCommandFile($name); + $this->createMailFile($name); + $this->createViewFile($name); + + $this->info('Arquivo criado com sucesso!'); + } + + protected function createCommandFile($name) + { + $path = app_path("Console/Commands/{$name}Command.php"); + $kebabName = Str::kebab($name); + $stub = <<queueService = \$queueService; + } + public function handle() + { + \$queue = '{$kebabName}'; + \$exchange = '{$kebabName}'; + \$routingKey = '{$kebabName}'; + \$this->queueService->consume(\$queue, \$exchange, \$routingKey, function (AMQPMessage \$msg) { + \$this->processMessage(\$msg); + }); + \$this->info('{$name} comando execultado com sucesso!'); + } + + protected function processMessage(AMQPMessage \$msg) + { + try { + Log::info('Mensagem recebida: ' . \$msg->getBody()); + + } catch (\\Exception \$e) { + Log::error('Erro ao processar mensagem: ' . \$e->getMessage()); + + } + } +} +EOD; + + file_put_contents($path, $stub); + $this->line("Comando Criado: {$path}"); + } + + protected function createMailFile($name) + { + $path = app_path("Mail/{$name}Mail.php"); + $stub = <<view('emails.' . strtolower(preg_replace('/(?line("Criado Email: {$path}"); + } + + protected function createViewFile($name) + { + $directory = resource_path('views/emails'); + if (!is_dir($directory)) { + mkdir($directory, 0755, true); + } + + $viewName = Str::kebab($name); + $path = resource_path("views/emails/{$viewName}.blade.php"); + $stub = << + + + {$name} Email + + +

Bem vindo {$name} Email

+

Esse é um template criado pelo comando personalizado.

+ + + EOD; + + file_put_contents($path, $stub); + $this->line("Criado a view: {$path}"); + } +} diff --git a/app/Console/Commands/OpinionManagementCommand.php b/app/Console/Commands/OpinionManagementCommand.php new file mode 100644 index 0000000..ba2e964 --- /dev/null +++ b/app/Console/Commands/OpinionManagementCommand.php @@ -0,0 +1,65 @@ +queueService = $queueService; + } + public function handle() + { + try { + $queue = config('rabbitmq.queues.queue_opinion_management', 'opinionsPublished'); + $exchange = config('rabbitmq.exchange_default'); + $routingKey = ''; + $this->info("Iniciando consumidor para a fila: {$queue}"); + $this->queueService->consume($queue, $exchange, $routingKey, function (AMQPMessage $msg) { + $this->processMessage($msg); + }); + } catch (\Exception $e) { + Log::error('Erro ao iniciar consumidor RabbitMQ: ' . $e->getMessage(), [ + 'queue' => $queue, + 'exchange' => $exchange, + 'routingKey' => $routingKey + ]); + $this->error('Erro ao iniciar consumidor: ' . $e->getMessage()); + } + + } + + protected function processMessage(AMQPMessage $msg) + { + try { + $registrations = json_decode($msg->getBody(), true); + + if (!is_array($registrations) || !isset($registrations['registrations'], $registrations['opportunity'])) { + $this->error('Formato de mensagem inválido'); + Log::error('Formato de mensagem inválido'); + return; + } + event(new OpinionManagementEvent($registrations)); + // Confirmar a mensagem após processamento + Log::info('Confirmando mensagem no RabbitMQ'); + $msg->ack(); + Log::info('Mensagem confirmada com sucesso'); + } catch (\Exception $e) { + \Sentry\captureMessage($e, \Sentry\Severity::info()); + Log::error('Erro ao processar a mensagem'); + $this->error('Erro ao processar a mensagem: '.$e->getMessage()); + } + } + +} diff --git a/app/Events/OpinionManagementEvent.php b/app/Events/OpinionManagementEvent.php new file mode 100644 index 0000000..61ada00 --- /dev/null +++ b/app/Events/OpinionManagementEvent.php @@ -0,0 +1,34 @@ +registration = $registration; + } + + /** + * Get the channels the event should broadcast on. + * + * @return array + */ + public function broadcastOn(): array + { + return [ + new PrivateChannel('channel-name'), + ]; + } +} diff --git a/app/Listeners/OpinionManagementListener.php b/app/Listeners/OpinionManagementListener.php new file mode 100644 index 0000000..98182c5 --- /dev/null +++ b/app/Listeners/OpinionManagementListener.php @@ -0,0 +1,77 @@ +getRegistration($event); + foreach ($regis as $registration) { + Log::info('Enviando e-mail para: ' . $registration['agent']['email']); + // Cria o Mailable + $mailable = new OpinionManagementMail($registration); + + // Audita em EmailDispatch com o conteúdo renderizado + EmailDispatch::create([ + 'to' => $registration['agent']['name'], + 'subject' => $mailable->subject, + 'content' => $mailable->render(), + 'mailable_type' => OpinionManagementMail::class, + 'meta' => [ + 'number' => $registration['number'], + 'agent' => $registration['agent']['name'], + 'opportunity' => $registration['opportunity'], + 'link' => $registration['url'], + ], + 'dispatched_at' => now(), + ]); + + Mail::to($registration['agent']['email'])->send(new OpinionManagementMail($registration)); + Log::info('Email enviado e auditado para: ' . $registration['agent']['email']); + } + } + + protected function getRegistration($registrations): array + { + $regis = []; + foreach ($registrations->registration['registrations'] as $registration) { + if ( + !isset( + $registration['number'], + $registration['url'], + $registration['agent']['email'], + $registration['agent']['name'] + ) + ) { + Log::error('Chaves obrigatórias ausentes na inscrição: ' . json_encode($registration)); + continue; + } + + $regis[] = array_merge($registration, [ + 'opportunity' => $registrations->registration['opportunity']['name'] + ]); + + } + return $regis; + } +} diff --git a/app/Mail/ImporteRegistrationMail.php b/app/Mail/ImporteRegistrationMail.php new file mode 100644 index 0000000..db25211 --- /dev/null +++ b/app/Mail/ImporteRegistrationMail.php @@ -0,0 +1,61 @@ + $this->data['registration'], + 'opp_id' => $this->data['opp_id'], + 'opp_name' => $this->data['opp_name'], + 'number' => $this->data['number'], + 'agent_name' => $this->data['agent_name'], + 'agent_email' => $this->data['agent_email'], + ] + ); + } + + /** + * Get the attachments for the message. + * + * @return array + */ + public function attachments(): array + { + return []; + } +} diff --git a/app/Mail/OpinionManagementMail.php b/app/Mail/OpinionManagementMail.php new file mode 100644 index 0000000..ed732df --- /dev/null +++ b/app/Mail/OpinionManagementMail.php @@ -0,0 +1,46 @@ +subject, + ); + } + + public function content(): Content + { + return new Content( + view: 'emails.opinion-management', + with: ['data' => $this->data] + ); + } + + /** + * Get the attachments for the message. + * + * @return array + */ + public function attachments(): array + { + return []; + } +} diff --git a/app/Models/EmailDispatch.php b/app/Models/EmailDispatch.php new file mode 100644 index 0000000..e1ac183 --- /dev/null +++ b/app/Models/EmailDispatch.php @@ -0,0 +1,50 @@ + 'array' + ]; + + +} diff --git a/app/Providers/EventServiceProvider.php b/app/Providers/EventServiceProvider.php new file mode 100644 index 0000000..efc0cc7 --- /dev/null +++ b/app/Providers/EventServiceProvider.php @@ -0,0 +1,32 @@ + [ + OpinionManagementListener::class, + ], + ]; + /** + * Register services. + */ + public function register(): void + { + // + } + + /** + * Bootstrap services. + */ + public function boot(): void + { + // + } +} diff --git a/app/Services/AmqpService.php b/app/Services/AmqpService.php index c966f0a..a45e94e 100644 --- a/app/Services/AmqpService.php +++ b/app/Services/AmqpService.php @@ -18,14 +18,7 @@ class AmqpService */ public function __construct() { - $this->connection = new AMQPStreamConnection( - config('app.rabbitmq.host'), - config('app.rabbitmq.port'), - config('app.rabbitmq.user'), - config('app.rabbitmq.pass'), - ); - - $this->channel = $this->connection->channel(); + } /** diff --git a/app/Services/RabbitMQService.php b/app/Services/RabbitMQService.php new file mode 100644 index 0000000..39d467d --- /dev/null +++ b/app/Services/RabbitMQService.php @@ -0,0 +1,102 @@ +connect(); + } + + private function connect(): bool + { + // Evitar conexão em desenvolvimento se RabbitMQ não estiver configurado + if (env('APP_ENV') === 'local' && !env('RABBITMQ_ENABLED', false)) { + Log::info('RabbitMQ connection skipped in local environment'); + return false; + } + + try { + $this->connection = new AMQPStreamConnection( + config('rabbitmq.host'), + config('rabbitmq.port'), + config('rabbitmq.user'), + config('rabbitmq.pass'), + config('rabbitmq.vhost') + ); + $this->channel = $this->connection->channel(); + Log::info('Conexão com RabbitMQ estabelecida com sucesso'); + return true; + } catch (\Exception $e) { + Log::error('Erro ao conectar ao RabbitMQ: ' . $e->getMessage(), [ + 'host' => config('rabbitmq.host', 'localhost'), + 'port' => config('rabbitmq.port', 5672), + 'user' => config('rabbitmq.user', 'guest'), + 'vhost' => config('rabbitmq.vhost', '/') + ]); + $this->connection = null; + $this->channel = null; + return false; + } + } + + public function consume(string $queue, string $exchange, string $routingKey, callable $callback): void + { + if (!$this->channel) { + Log::error('Não foi possível consumir mensagens: canal do RabbitMQ não inicializado', [ + 'queue' => $queue, + 'exchange' => $exchange, + 'routingKey' => $routingKey + ]); + return; + } + try { + // Declarar a exchange + $this->channel->exchange_declare($exchange, 'direct', false, true, false); + + // Declarar a fila + $this->channel->queue_declare($queue, false, true, false, false); + + // Vincular a fila à exchange + $this->channel->queue_bind($queue, $exchange, $routingKey); + + // Consumir mensagens + $this->channel->basic_consume($queue, '', false, false, false, false, function ($msg) use ($callback) { + $callback($msg); + }); + + Log::info("Consumindo mensagens da fila: {$queue}"); + while ($this->channel->is_consuming()) { + $this->channel->wait(); + } + } catch (\Exception $e) { + Log::error('Erro ao consumir mensagem do RabbitMQ: ' . $e->getMessage(), [ + 'queue' => $queue, + 'exchange' => $exchange, + 'routingKey' => $routingKey + ]); + } + } + + public function __destruct() + { + try { + if ($this->channel) { + $this->channel->close(); + } + if ($this->connection) { + $this->connection->close(); + } + } catch (\Exception $e) { + Log::error('Erro ao fechar conexão com RabbitMQ: ' . $e->getMessage()); + } + } +} diff --git a/bootstrap/app.php b/bootstrap/app.php index fa0e337..7bade3e 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -5,6 +5,7 @@ use Illuminate\Foundation\Configuration\Exceptions; use Illuminate\Foundation\Configuration\Middleware; use Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful; +use Sentry\Laravel\Integration; return Application::configure(basePath: dirname(__DIR__)) ->withRouting( @@ -23,6 +24,7 @@ ]); }) ->withExceptions(function (Exceptions $exceptions) { + Integration::handles($exceptions); // $exceptions->alias([ // 'auth' => \App\Exceptions\AuthenticationException::class, // 'http' => \App\Exceptions\HttpException::class, diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore old mode 100644 new mode 100755 diff --git a/bootstrap/providers.php b/bootstrap/providers.php index 38b258d..e346179 100644 --- a/bootstrap/providers.php +++ b/bootstrap/providers.php @@ -2,4 +2,6 @@ return [ App\Providers\AppServiceProvider::class, + App\Providers\EventServiceProvider::class, + OwenIt\Auditing\AuditingServiceProvider::class, ]; diff --git a/composer.json b/composer.json index 55cd587..da72106 100644 --- a/composer.json +++ b/composer.json @@ -9,13 +9,16 @@ "ext-pdo": "*", "guzzlehttp/guzzle": "^7.0", "juniorshyko/phpextensive": "^1.0", - "laravel/framework": "^12.0", + "laravel/framework": "^12.20", "laravel/sanctum": "^4.0", "laravel/tinker": "^2.9", + "owen-it/laravel-auditing": "^14.0", "php-amqplib/php-amqplib": "^3.2", + "sentry/sentry-laravel": "^4.15", "tymon/jwt-auth": "^2.1" }, "require-dev": { + "ext-pcntl": "*", "brianium/paratest": "^7.8", "fakerphp/faker": "^1.23", "laravel/breeze": "^2.0", @@ -25,8 +28,7 @@ "mockery/mockery": "^1.6", "nunomaduro/collision": "^8.0", "phpunit/phpunit": "^11.0", - "spatie/laravel-ignition": "^2.4", - "ext-pcntl": "*" + "spatie/laravel-ignition": "^2.4" }, "autoload": { "psr-4": { diff --git a/composer.lock b/composer.lock index b8d764b..bf7d0b5 100644 --- a/composer.lock +++ b/composer.lock @@ -4,29 +4,29 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "c6bb3a2d5cf92b74e56339ef217e4da2", + "content-hash": "a921bc2bcdd9a61c7a3fb35dd44be98f", "packages": [ { "name": "brick/math", - "version": "0.12.3", + "version": "0.14.0", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba" + "reference": "113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba", - "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba", + "url": "https://api.github.com/repos/brick/math/zipball/113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2", + "reference": "113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2", "shasum": "" }, "require": { - "php": "^8.1" + "php": "^8.2" }, "require-dev": { "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^10.1", - "vimeo/psalm": "6.8.8" + "phpstan/phpstan": "2.1.22", + "phpunit/phpunit": "^11.5" }, "type": "library", "autoload": { @@ -56,7 +56,7 @@ ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.12.3" + "source": "https://github.com/brick/math/tree/0.14.0" }, "funding": [ { @@ -64,7 +64,7 @@ "type": "github" } ], - "time": "2025-02-28T13:11:00+00:00" + "time": "2025-08-29T12:40:03+00:00" }, { "name": "carbonphp/carbon-doctrine-types", @@ -212,33 +212,32 @@ }, { "name": "doctrine/inflector", - "version": "2.0.10", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" + "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", - "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b", + "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b", "shasum": "" }, "require": { "php": "^7.2 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^11.0", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-phpunit": "^1.1", - "phpstan/phpstan-strict-rules": "^1.3", - "phpunit/phpunit": "^8.5 || ^9.5", - "vimeo/psalm": "^4.25 || ^5.4" + "doctrine/coding-standard": "^12.0 || ^13.0", + "phpstan/phpstan": "^1.12 || ^2.0", + "phpstan/phpstan-phpunit": "^1.4 || ^2.0", + "phpstan/phpstan-strict-rules": "^1.6 || ^2.0", + "phpunit/phpunit": "^8.5 || ^12.2" }, "type": "library", "autoload": { "psr-4": { - "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + "Doctrine\\Inflector\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -283,7 +282,7 @@ ], "support": { "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/2.0.10" + "source": "https://github.com/doctrine/inflector/tree/2.1.0" }, "funding": [ { @@ -299,7 +298,7 @@ "type": "tidelift" } ], - "time": "2024-02-18T20:23:39+00:00" + "time": "2025-08-10T19:31:58+00:00" }, { "name": "doctrine/lexer", @@ -645,22 +644,22 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.9.3", + "version": "7.10.0", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77" + "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", - "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4", + "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.5.3 || ^2.0.3", - "guzzlehttp/psr7": "^2.7.0", + "guzzlehttp/promises": "^2.3", + "guzzlehttp/psr7": "^2.8", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" @@ -751,7 +750,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.9.3" + "source": "https://github.com/guzzle/guzzle/tree/7.10.0" }, "funding": [ { @@ -767,20 +766,20 @@ "type": "tidelift" } ], - "time": "2025-03-27T13:37:11+00:00" + "time": "2025-08-23T22:36:01+00:00" }, { "name": "guzzlehttp/promises", - "version": "2.2.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c" + "reference": "481557b130ef3790cf82b713667b43030dc9c957" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c", - "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c", + "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957", + "reference": "481557b130ef3790cf82b713667b43030dc9c957", "shasum": "" }, "require": { @@ -788,7 +787,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.39 || ^9.6.20" + "phpunit/phpunit": "^8.5.44 || ^9.6.25" }, "type": "library", "extra": { @@ -834,7 +833,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.2.0" + "source": "https://github.com/guzzle/promises/tree/2.3.0" }, "funding": [ { @@ -850,20 +849,20 @@ "type": "tidelift" } ], - "time": "2025-03-27T13:27:01+00:00" + "time": "2025-08-22T14:34:08+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.7.1", + "version": "2.8.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16" + "reference": "21dc724a0583619cd1652f673303492272778051" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16", - "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051", + "reference": "21dc724a0583619cd1652f673303492272778051", "shasum": "" }, "require": { @@ -879,7 +878,7 @@ "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", "http-interop/http-factory-tests": "0.9.0", - "phpunit/phpunit": "^8.5.39 || ^9.6.20" + "phpunit/phpunit": "^8.5.44 || ^9.6.25" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" @@ -950,7 +949,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.7.1" + "source": "https://github.com/guzzle/psr7/tree/2.8.0" }, "funding": [ { @@ -966,20 +965,20 @@ "type": "tidelift" } ], - "time": "2025-03-27T12:30:47+00:00" + "time": "2025-08-23T21:21:41+00:00" }, { "name": "guzzlehttp/uri-template", - "version": "v1.0.4", + "version": "v1.0.5", "source": { "type": "git", "url": "https://github.com/guzzle/uri-template.git", - "reference": "30e286560c137526eccd4ce21b2de477ab0676d2" + "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2", - "reference": "30e286560c137526eccd4ce21b2de477ab0676d2", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1", + "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1", "shasum": "" }, "require": { @@ -988,7 +987,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "phpunit/phpunit": "^8.5.44 || ^9.6.25", "uri-template/tests": "1.0.0" }, "type": "library", @@ -1036,7 +1035,7 @@ ], "support": { "issues": "https://github.com/guzzle/uri-template/issues", - "source": "https://github.com/guzzle/uri-template/tree/v1.0.4" + "source": "https://github.com/guzzle/uri-template/tree/v1.0.5" }, "funding": [ { @@ -1052,7 +1051,67 @@ "type": "tidelift" } ], - "time": "2025-02-03T10:55:03+00:00" + "time": "2025-08-22T14:27:06+00:00" + }, + { + "name": "jean85/pretty-package-versions", + "version": "2.1.1", + "source": { + "type": "git", + "url": "https://github.com/Jean85/pretty-package-versions.git", + "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a", + "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.1.0", + "php": "^7.4|^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "jean85/composer-provided-replaced-stub-package": "^1.0", + "phpstan/phpstan": "^2.0", + "phpunit/phpunit": "^7.5|^8.5|^9.6", + "rector/rector": "^2.0", + "vimeo/psalm": "^4.3 || ^5.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Jean85\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alessandro Lai", + "email": "alessandro.lai85@gmail.com" + } + ], + "description": "A library to get pretty versions strings of installed dependencies", + "keywords": [ + "composer", + "package", + "release", + "versions" + ], + "support": { + "issues": "https://github.com/Jean85/pretty-package-versions/issues", + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1" + }, + "time": "2025-03-19T14:43:43+00:00" }, { "name": "juniorshyko/phpextensive", @@ -1096,20 +1155,20 @@ }, { "name": "laravel/framework", - "version": "v12.7.2", + "version": "v12.30.1", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "a4ba76e06fe6dd02312359f8184ab259900a7780" + "reference": "7f61e8679f9142f282a0184ac7ef9e3834bfd023" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/a4ba76e06fe6dd02312359f8184ab259900a7780", - "reference": "a4ba76e06fe6dd02312359f8184ab259900a7780", + "url": "https://api.github.com/repos/laravel/framework/zipball/7f61e8679f9142f282a0184ac7ef9e3834bfd023", + "reference": "7f61e8679f9142f282a0184ac7ef9e3834bfd023", "shasum": "" }, "require": { - "brick/math": "^0.11|^0.12", + "brick/math": "^0.11|^0.12|^0.13|^0.14", "composer-runtime-api": "^2.2", "doctrine/inflector": "^2.0.5", "dragonmantank/cron-expression": "^3.4", @@ -1126,13 +1185,14 @@ "guzzlehttp/uri-template": "^1.0", "laravel/prompts": "^0.3.0", "laravel/serializable-closure": "^1.3|^2.0", - "league/commonmark": "^2.6", + "league/commonmark": "^2.7", "league/flysystem": "^3.25.1", "league/flysystem-local": "^3.25.1", "league/uri": "^7.5.1", "monolog/monolog": "^3.0", "nesbot/carbon": "^3.8.4", "nunomaduro/termwind": "^2.0", + "phiki/phiki": "^2.0.0", "php": "^8.2", "psr/container": "^1.1.1|^2.0.1", "psr/log": "^1.0|^2.0|^3.0", @@ -1145,7 +1205,9 @@ "symfony/http-kernel": "^7.2.0", "symfony/mailer": "^7.2.0", "symfony/mime": "^7.2.0", - "symfony/polyfill-php83": "^1.31", + "symfony/polyfill-php83": "^1.33", + "symfony/polyfill-php84": "^1.33", + "symfony/polyfill-php85": "^1.33", "symfony/process": "^7.2.0", "symfony/routing": "^7.2.0", "symfony/uid": "^7.2.0", @@ -1181,6 +1243,7 @@ "illuminate/filesystem": "self.version", "illuminate/hashing": "self.version", "illuminate/http": "self.version", + "illuminate/json-schema": "self.version", "illuminate/log": "self.version", "illuminate/macroable": "self.version", "illuminate/mail": "self.version", @@ -1213,12 +1276,13 @@ "league/flysystem-read-only": "^3.25.1", "league/flysystem-sftp-v3": "^3.25.1", "mockery/mockery": "^1.6.10", - "orchestra/testbench-core": "^10.0.0", - "pda/pheanstalk": "^5.0.6", + "opis/json-schema": "^2.4.1", + "orchestra/testbench-core": "^10.6.5", + "pda/pheanstalk": "^5.0.6|^7.0.0", "php-http/discovery": "^1.15", "phpstan/phpstan": "^2.0", "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1", - "predis/predis": "^2.3", + "predis/predis": "^2.3|^3.0", "resend/resend-php": "^0.10.0", "symfony/cache": "^7.2.0", "symfony/http-client": "^7.2.0", @@ -1238,7 +1302,7 @@ "ext-pdo": "Required to use all database features.", "ext-posix": "Required to use all features of the queue worker.", "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).", - "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "fakerphp/faker": "Required to generate fake data using the fake() helper (^1.23).", "filp/whoops": "Required for friendly error pages in development (^2.14.3).", "laravel/tinker": "Required to use the tinker console command (^2.0).", "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).", @@ -1250,7 +1314,7 @@ "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).", "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).", "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).", - "predis/predis": "Required to use the predis connector (^2.3).", + "predis/predis": "Required to use the predis connector (^2.3|^3.0).", "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).", @@ -1307,20 +1371,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-04-03T18:00:49+00:00" + "time": "2025-09-18T21:07:07+00:00" }, { "name": "laravel/prompts", - "version": "v0.3.5", + "version": "v0.3.6", "source": { "type": "git", "url": "https://github.com/laravel/prompts.git", - "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1" + "reference": "86a8b692e8661d0fb308cec64f3d176821323077" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1", - "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1", + "url": "https://api.github.com/repos/laravel/prompts/zipball/86a8b692e8661d0fb308cec64f3d176821323077", + "reference": "86a8b692e8661d0fb308cec64f3d176821323077", "shasum": "" }, "require": { @@ -1364,22 +1428,22 @@ "description": "Add beautiful and user-friendly forms to your command-line applications.", "support": { "issues": "https://github.com/laravel/prompts/issues", - "source": "https://github.com/laravel/prompts/tree/v0.3.5" + "source": "https://github.com/laravel/prompts/tree/v0.3.6" }, - "time": "2025-02-11T13:34:40+00:00" + "time": "2025-07-07T14:17:42+00:00" }, { "name": "laravel/sanctum", - "version": "v4.0.8", + "version": "v4.2.0", "source": { "type": "git", "url": "https://github.com/laravel/sanctum.git", - "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c" + "reference": "fd6df4f79f48a72992e8d29a9c0ee25422a0d677" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sanctum/zipball/ec1dd9ddb2ab370f79dfe724a101856e0963f43c", - "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/fd6df4f79f48a72992e8d29a9c0ee25422a0d677", + "reference": "fd6df4f79f48a72992e8d29a9c0ee25422a0d677", "shasum": "" }, "require": { @@ -1430,7 +1494,7 @@ "issues": "https://github.com/laravel/sanctum/issues", "source": "https://github.com/laravel/sanctum" }, - "time": "2025-01-26T19:34:36+00:00" + "time": "2025-07-09T19:45:24+00:00" }, { "name": "laravel/serializable-closure", @@ -1699,16 +1763,16 @@ }, { "name": "league/commonmark", - "version": "2.7.0", + "version": "2.7.1", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405" + "reference": "10732241927d3971d28e7ea7b5712721fa2296ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405", - "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/10732241927d3971d28e7ea7b5712721fa2296ca", + "reference": "10732241927d3971d28e7ea7b5712721fa2296ca", "shasum": "" }, "require": { @@ -1737,7 +1801,7 @@ "symfony/process": "^5.4 | ^6.0 | ^7.0", "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0", "unleashedtech/php-coding-standard": "^3.1.1", - "vimeo/psalm": "^4.24.0 || ^5.0.0" + "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0" }, "suggest": { "symfony/yaml": "v2.3+ required if using the Front Matter extension" @@ -1802,7 +1866,7 @@ "type": "tidelift" } ], - "time": "2025-05-05T12:20:28+00:00" + "time": "2025-07-20T12:47:49+00:00" }, { "name": "league/config", @@ -1888,16 +1952,16 @@ }, { "name": "league/flysystem", - "version": "3.29.1", + "version": "3.30.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319" + "reference": "2203e3151755d874bb2943649dae1eb8533ac93e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319", - "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2203e3151755d874bb2943649dae1eb8533ac93e", + "reference": "2203e3151755d874bb2943649dae1eb8533ac93e", "shasum": "" }, "require": { @@ -1921,13 +1985,13 @@ "composer/semver": "^3.0", "ext-fileinfo": "*", "ext-ftp": "*", - "ext-mongodb": "^1.3", + "ext-mongodb": "^1.3|^2", "ext-zip": "*", "friendsofphp/php-cs-fixer": "^3.5", "google/cloud-storage": "^1.23", "guzzlehttp/psr7": "^2.6", "microsoft/azure-storage-blob": "^1.1", - "mongodb/mongodb": "^1.2", + "mongodb/mongodb": "^1.2|^2", "phpseclib/phpseclib": "^3.0.36", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.5.11|^10.0", @@ -1965,22 +2029,22 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.29.1" + "source": "https://github.com/thephpleague/flysystem/tree/3.30.0" }, - "time": "2024-10-08T08:58:34+00:00" + "time": "2025-06-25T13:29:59+00:00" }, { "name": "league/flysystem-local", - "version": "3.29.0", + "version": "3.30.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem-local.git", - "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27" + "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27", - "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/6691915f77c7fb69adfb87dcd550052dc184ee10", + "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10", "shasum": "" }, "require": { @@ -2014,9 +2078,9 @@ "local" ], "support": { - "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0" + "source": "https://github.com/thephpleague/flysystem-local/tree/3.30.0" }, - "time": "2024-08-09T21:24:39+00:00" + "time": "2025-05-21T10:34:19+00:00" }, { "name": "league/mime-type-detection", @@ -2353,16 +2417,16 @@ }, { "name": "nesbot/carbon", - "version": "3.9.0", + "version": "3.10.3", "source": { "type": "git", "url": "https://github.com/CarbonPHP/carbon.git", - "reference": "6d16a8a015166fe54e22c042e0805c5363aef50d" + "reference": "8e3643dcd149ae0fe1d2ff4f2c8e4bbfad7c165f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/6d16a8a015166fe54e22c042e0805c5363aef50d", - "reference": "6d16a8a015166fe54e22c042e0805c5363aef50d", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/8e3643dcd149ae0fe1d2ff4f2c8e4bbfad7c165f", + "reference": "8e3643dcd149ae0fe1d2ff4f2c8e4bbfad7c165f", "shasum": "" }, "require": { @@ -2370,9 +2434,9 @@ "ext-json": "*", "php": "^8.1", "psr/clock": "^1.0", - "symfony/clock": "^6.3 || ^7.0", + "symfony/clock": "^6.3.12 || ^7.0", "symfony/polyfill-mbstring": "^1.0", - "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0" + "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0" }, "provide": { "psr/clock-implementation": "1.0" @@ -2380,14 +2444,13 @@ "require-dev": { "doctrine/dbal": "^3.6.3 || ^4.0", "doctrine/orm": "^2.15.2 || ^3.0", - "friendsofphp/php-cs-fixer": "^3.57.2", + "friendsofphp/php-cs-fixer": "^v3.87.1", "kylekatarnls/multi-tester": "^2.5.3", - "ondrejmirtes/better-reflection": "^6.25.0.4", "phpmd/phpmd": "^2.15.0", - "phpstan/extension-installer": "^1.3.1", - "phpstan/phpstan": "^1.11.2", - "phpunit/phpunit": "^10.5.20", - "squizlabs/php_codesniffer": "^3.9.0" + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^2.1.22", + "phpunit/phpunit": "^10.5.53", + "squizlabs/php_codesniffer": "^3.13.4" }, "bin": [ "bin/carbon" @@ -2455,7 +2518,7 @@ "type": "tidelift" } ], - "time": "2025-03-27T12:57:33+00:00" + "time": "2025-09-06T13:39:36+00:00" }, { "name": "nette/schema", @@ -2521,29 +2584,29 @@ }, { "name": "nette/utils", - "version": "v4.0.6", + "version": "v4.0.8", "source": { "type": "git", "url": "https://github.com/nette/utils.git", - "reference": "ce708655043c7050eb050df361c5e313cf708309" + "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/ce708655043c7050eb050df361c5e313cf708309", - "reference": "ce708655043c7050eb050df361c5e313cf708309", + "url": "https://api.github.com/repos/nette/utils/zipball/c930ca4e3cf4f17dcfb03037703679d2396d2ede", + "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede", "shasum": "" }, "require": { - "php": "8.0 - 8.4" + "php": "8.0 - 8.5" }, "conflict": { "nette/finder": "<3", "nette/schema": "<1.2.2" }, "require-dev": { - "jetbrains/phpstorm-attributes": "dev-master", + "jetbrains/phpstorm-attributes": "^1.2", "nette/tester": "^2.5", - "phpstan/phpstan": "^1.0", + "phpstan/phpstan-nette": "^2.0@stable", "tracy/tracy": "^2.9" }, "suggest": { @@ -2561,6 +2624,9 @@ } }, "autoload": { + "psr-4": { + "Nette\\": "src" + }, "classmap": [ "src/" ] @@ -2601,22 +2667,22 @@ ], "support": { "issues": "https://github.com/nette/utils/issues", - "source": "https://github.com/nette/utils/tree/v4.0.6" + "source": "https://github.com/nette/utils/tree/v4.0.8" }, - "time": "2025-03-30T21:06:30+00:00" + "time": "2025-08-06T21:43:34+00:00" }, { "name": "nikic/php-parser", - "version": "v5.4.0", + "version": "v5.6.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "447a020a1f875a434d62f2a401f53b82a396e494" + "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494", - "reference": "447a020a1f875a434d62f2a401f53b82a396e494", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2", + "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2", "shasum": "" }, "require": { @@ -2635,7 +2701,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "5.x-dev" } }, "autoload": { @@ -2659,37 +2725,37 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.1" }, - "time": "2024-12-30T11:07:19+00:00" + "time": "2025-08-13T20:13:15+00:00" }, { "name": "nunomaduro/termwind", - "version": "v2.3.0", + "version": "v2.3.1", "source": { "type": "git", "url": "https://github.com/nunomaduro/termwind.git", - "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda" + "reference": "dfa08f390e509967a15c22493dc0bac5733d9123" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda", - "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/dfa08f390e509967a15c22493dc0bac5733d9123", + "reference": "dfa08f390e509967a15c22493dc0bac5733d9123", "shasum": "" }, "require": { "ext-mbstring": "*", "php": "^8.2", - "symfony/console": "^7.1.8" + "symfony/console": "^7.2.6" }, "require-dev": { - "illuminate/console": "^11.33.2", - "laravel/pint": "^1.18.2", + "illuminate/console": "^11.44.7", + "laravel/pint": "^1.22.0", "mockery/mockery": "^1.6.12", - "pestphp/pest": "^2.36.0", - "phpstan/phpstan": "^1.12.11", - "phpstan/phpstan-strict-rules": "^1.6.1", - "symfony/var-dumper": "^7.1.8", + "pestphp/pest": "^2.36.0 || ^3.8.2", + "phpstan/phpstan": "^1.12.25", + "phpstan/phpstan-strict-rules": "^1.6.2", + "symfony/var-dumper": "^7.2.6", "thecodingmachine/phpstan-strict-rules": "^1.0.0" }, "type": "library", @@ -2732,7 +2798,7 @@ ], "support": { "issues": "https://github.com/nunomaduro/termwind/issues", - "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0" + "source": "https://github.com/nunomaduro/termwind/tree/v2.3.1" }, "funding": [ { @@ -2748,7 +2814,169 @@ "type": "github" } ], - "time": "2024-11-21T10:39:51+00:00" + "time": "2025-05-08T08:14:37+00:00" + }, + { + "name": "nyholm/psr7", + "version": "1.8.2", + "source": { + "type": "git", + "url": "https://github.com/Nyholm/psr7.git", + "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3", + "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3", + "shasum": "" + }, + "require": { + "php": ">=7.2", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0" + }, + "provide": { + "php-http/message-factory-implementation": "1.0", + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "http-interop/http-factory-tests": "^0.9", + "php-http/message-factory": "^1.0", + "php-http/psr7-integration-tests": "^1.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4", + "symfony/error-handler": "^4.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.8-dev" + } + }, + "autoload": { + "psr-4": { + "Nyholm\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com" + }, + { + "name": "Martijn van der Ven", + "email": "martijn@vanderven.se" + } + ], + "description": "A fast PHP7 implementation of PSR-7", + "homepage": "https://tnyholm.se", + "keywords": [ + "psr-17", + "psr-7" + ], + "support": { + "issues": "https://github.com/Nyholm/psr7/issues", + "source": "https://github.com/Nyholm/psr7/tree/1.8.2" + }, + "funding": [ + { + "url": "https://github.com/Zegnat", + "type": "github" + }, + { + "url": "https://github.com/nyholm", + "type": "github" + } + ], + "time": "2024-09-09T07:06:30+00:00" + }, + { + "name": "owen-it/laravel-auditing", + "version": "v14.0.0", + "source": { + "type": "git", + "url": "https://github.com/owen-it/laravel-auditing.git", + "reference": "f92602d1b3f53df29ddd577290e9d735ea707c53" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/owen-it/laravel-auditing/zipball/f92602d1b3f53df29ddd577290e9d735ea707c53", + "reference": "f92602d1b3f53df29ddd577290e9d735ea707c53", + "shasum": "" + }, + "require": { + "ext-json": "*", + "illuminate/console": "^11.0|^12.0", + "illuminate/database": "^11.0|^12.0", + "illuminate/filesystem": "^11.0|^12.0", + "php": "^8.2" + }, + "require-dev": { + "mockery/mockery": "^1.5.1", + "orchestra/testbench": "^9.0|^10.0", + "phpunit/phpunit": "^11.0" + }, + "type": "package", + "extra": { + "laravel": { + "providers": [ + "OwenIt\\Auditing\\AuditingServiceProvider" + ] + }, + "branch-alias": { + "dev-master": "v14-dev" + } + }, + "autoload": { + "psr-4": { + "OwenIt\\Auditing\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Antério Vieira", + "email": "anteriovieira@gmail.com" + }, + { + "name": "Raphael França", + "email": "raphaelfrancabsb@gmail.com" + }, + { + "name": "Morten D. Hansen", + "email": "morten@visia.dk" + } + ], + "description": "Audit changes of your Eloquent models in Laravel", + "homepage": "https://laravel-auditing.com", + "keywords": [ + "Accountability", + "Audit", + "auditing", + "changes", + "eloquent", + "history", + "laravel", + "log", + "logging", + "lumen", + "observer", + "record", + "revision", + "tracking" + ], + "support": { + "issues": "https://github.com/owen-it/laravel-auditing/issues", + "source": "https://github.com/owen-it/laravel-auditing" + }, + "time": "2025-02-26T16:40:54+00:00" }, { "name": "paragonie/constant_time_encoding", @@ -2867,6 +3095,77 @@ }, "time": "2020-10-15T08:29:30+00:00" }, + { + "name": "phiki/phiki", + "version": "v2.0.4", + "source": { + "type": "git", + "url": "https://github.com/phikiphp/phiki.git", + "reference": "160785c50c01077780ab217e5808f00ab8f05a13" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phikiphp/phiki/zipball/160785c50c01077780ab217e5808f00ab8f05a13", + "reference": "160785c50c01077780ab217e5808f00ab8f05a13", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "league/commonmark": "^2.5.3", + "php": "^8.2", + "psr/simple-cache": "^3.0" + }, + "require-dev": { + "illuminate/support": "^11.45", + "laravel/pint": "^1.18.1", + "orchestra/testbench": "^9.15", + "pestphp/pest": "^3.5.1", + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^2.0", + "symfony/var-dumper": "^7.1.6" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Phiki\\Adapters\\Laravel\\PhikiServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Phiki\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ryan Chandler", + "email": "support@ryangjchandler.co.uk", + "homepage": "https://ryangjchandler.co.uk", + "role": "Developer" + } + ], + "description": "Syntax highlighting using TextMate grammars in PHP.", + "support": { + "issues": "https://github.com/phikiphp/phiki/issues", + "source": "https://github.com/phikiphp/phiki/tree/v2.0.4" + }, + "funding": [ + { + "url": "https://github.com/sponsors/ryangjchandler", + "type": "github" + }, + { + "url": "https://buymeacoffee.com/ryangjchandler", + "type": "other" + } + ], + "time": "2025-09-20T17:21:02+00:00" + }, { "name": "php-amqplib/php-amqplib", "version": "v3.7.3", @@ -2950,16 +3249,16 @@ }, { "name": "phpoption/phpoption", - "version": "1.9.3", + "version": "1.9.4", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" + "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", - "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d", + "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d", "shasum": "" }, "require": { @@ -2967,7 +3266,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34" }, "type": "library", "extra": { @@ -3009,7 +3308,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" + "source": "https://github.com/schmittjoh/php-option/tree/1.9.4" }, "funding": [ { @@ -3021,20 +3320,20 @@ "type": "tidelift" } ], - "time": "2024-07-20T21:41:07+00:00" + "time": "2025-08-21T11:53:16+00:00" }, { "name": "phpseclib/phpseclib", - "version": "3.0.43", + "version": "3.0.46", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "709ec107af3cb2f385b9617be72af8cf62441d02" + "reference": "56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02", - "reference": "709ec107af3cb2f385b9617be72af8cf62441d02", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6", + "reference": "56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6", "shasum": "" }, "require": { @@ -3115,7 +3414,7 @@ ], "support": { "issues": "https://github.com/phpseclib/phpseclib/issues", - "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43" + "source": "https://github.com/phpseclib/phpseclib/tree/3.0.46" }, "funding": [ { @@ -3131,7 +3430,7 @@ "type": "tidelift" } ], - "time": "2024-12-14T21:12:59+00:00" + "time": "2025-06-26T16:29:55+00:00" }, { "name": "psr/clock", @@ -3547,16 +3846,16 @@ }, { "name": "psy/psysh", - "version": "v0.12.8", + "version": "v0.12.12", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625" + "reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625", - "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/cd23863404a40ccfaf733e3af4db2b459837f7e7", + "reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7", "shasum": "" }, "require": { @@ -3606,12 +3905,11 @@ "authors": [ { "name": "Justin Hileman", - "email": "justin@justinhileman.info", - "homepage": "http://justinhileman.com" + "email": "justin@justinhileman.info" } ], "description": "An interactive shell for modern PHP.", - "homepage": "http://psysh.org", + "homepage": "https://psysh.org", "keywords": [ "REPL", "console", @@ -3620,9 +3918,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.8" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.12" }, - "time": "2025-03-16T03:05:19+00:00" + "time": "2025-09-20T13:46:31+00:00" }, { "name": "ralouphie/getallheaders", @@ -3746,21 +4044,20 @@ }, { "name": "ramsey/uuid", - "version": "4.7.6", + "version": "4.9.1", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "91039bc1faa45ba123c4328958e620d382ec7088" + "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", - "reference": "91039bc1faa45ba123c4328958e620d382ec7088", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/81f941f6f729b1e3ceea61d9d014f8b6c6800440", + "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", - "ext-json": "*", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14", "php": "^8.0", "ramsey/collection": "^1.2 || ^2.0" }, @@ -3768,26 +4065,23 @@ "rhumsaa/uuid": "self.version" }, "require-dev": { - "captainhook/captainhook": "^5.10", + "captainhook/captainhook": "^5.25", "captainhook/plugin-composer": "^5.3", - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "doctrine/annotations": "^1.8", - "ergebnis/composer-normalize": "^2.15", - "mockery/mockery": "^1.3", + "dealerdirect/phpcodesniffer-composer-installer": "^1.0", + "ergebnis/composer-normalize": "^2.47", + "mockery/mockery": "^1.6", "paragonie/random-lib": "^2", - "php-mock/php-mock": "^2.2", - "php-mock/php-mock-mockery": "^1.3", - "php-parallel-lint/php-parallel-lint": "^1.1", - "phpbench/phpbench": "^1.0", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-mockery": "^1.1", - "phpstan/phpstan-phpunit": "^1.1", - "phpunit/phpunit": "^8.5 || ^9", - "ramsey/composer-repl": "^1.4", - "slevomat/coding-standard": "^8.4", - "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "^4.9" + "php-mock/php-mock": "^2.6", + "php-mock/php-mock-mockery": "^1.5", + "php-parallel-lint/php-parallel-lint": "^1.4.0", + "phpbench/phpbench": "^1.2.14", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^9.6", + "slevomat/coding-standard": "^8.18", + "squizlabs/php_codesniffer": "^3.13" }, "suggest": { "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", @@ -3822,40 +4116,208 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.7.6" + "source": "https://github.com/ramsey/uuid/tree/4.9.1" }, - "funding": [ - { - "url": "https://github.com/ramsey", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", - "type": "tidelift" - } - ], - "time": "2024-04-27T21:32:50+00:00" + "time": "2025-09-04T20:59:21+00:00" }, { - "name": "symfony/clock", - "version": "v7.2.0", + "name": "sentry/sentry", + "version": "4.16.0", "source": { "type": "git", - "url": "https://github.com/symfony/clock.git", - "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24" + "url": "https://github.com/getsentry/sentry-php.git", + "reference": "c5b086e4235762da175034bc463b0d31cbb38d2e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24", - "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24", + "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/c5b086e4235762da175034bc463b0d31cbb38d2e", + "reference": "c5b086e4235762da175034bc463b0d31cbb38d2e", "shasum": "" }, "require": { - "php": ">=8.2", - "psr/clock": "^1.0", - "symfony/polyfill-php83": "^1.28" - }, - "provide": { + "ext-curl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "guzzlehttp/psr7": "^1.8.4|^2.1.1", + "jean85/pretty-package-versions": "^1.5|^2.0.4", + "php": "^7.2|^8.0", + "psr/log": "^1.0|^2.0|^3.0", + "symfony/options-resolver": "^4.4.30|^5.0.11|^6.0|^7.0" + }, + "conflict": { + "raven/raven": "*" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.4", + "guzzlehttp/promises": "^2.0.3", + "guzzlehttp/psr7": "^1.8.4|^2.1.1", + "monolog/monolog": "^1.6|^2.0|^3.0", + "phpbench/phpbench": "^1.0", + "phpstan/phpstan": "^1.3", + "phpunit/phpunit": "^8.5|^9.6", + "symfony/phpunit-bridge": "^5.2|^6.0|^7.0", + "vimeo/psalm": "^4.17" + }, + "suggest": { + "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler." + }, + "type": "library", + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Sentry\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Sentry", + "email": "accounts@sentry.io" + } + ], + "description": "PHP SDK for Sentry (http://sentry.io)", + "homepage": "http://sentry.io", + "keywords": [ + "crash-reporting", + "crash-reports", + "error-handler", + "error-monitoring", + "log", + "logging", + "profiling", + "sentry", + "tracing" + ], + "support": { + "issues": "https://github.com/getsentry/sentry-php/issues", + "source": "https://github.com/getsentry/sentry-php/tree/4.16.0" + }, + "funding": [ + { + "url": "https://sentry.io/", + "type": "custom" + }, + { + "url": "https://sentry.io/pricing/", + "type": "custom" + } + ], + "time": "2025-09-22T13:38:03+00:00" + }, + { + "name": "sentry/sentry-laravel", + "version": "4.16.0", + "source": { + "type": "git", + "url": "https://github.com/getsentry/sentry-laravel.git", + "reference": "b33b2e487b02db02d92988228f142d7fa2be2bfa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/b33b2e487b02db02d92988228f142d7fa2be2bfa", + "reference": "b33b2e487b02db02d92988228f142d7fa2be2bfa", + "shasum": "" + }, + "require": { + "illuminate/support": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 | ^11.0 | ^12.0", + "nyholm/psr7": "^1.0", + "php": "^7.2 | ^8.0", + "sentry/sentry": "^4.15.2", + "symfony/psr-http-message-bridge": "^1.0 | ^2.0 | ^6.0 | ^7.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.11", + "guzzlehttp/guzzle": "^7.2", + "laravel/folio": "^1.1", + "laravel/framework": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 | ^11.0 | ^12.0", + "livewire/livewire": "^2.0 | ^3.0", + "mockery/mockery": "^1.3", + "orchestra/testbench": "^4.7 | ^5.1 | ^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8.4 | ^9.3 | ^10.4 | ^11.5" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "Sentry": "Sentry\\Laravel\\Facade" + }, + "providers": [ + "Sentry\\Laravel\\ServiceProvider", + "Sentry\\Laravel\\Tracing\\ServiceProvider" + ] + } + }, + "autoload": { + "psr-0": { + "Sentry\\Laravel\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Sentry", + "email": "accounts@sentry.io" + } + ], + "description": "Laravel SDK for Sentry (https://sentry.io)", + "homepage": "https://sentry.io", + "keywords": [ + "crash-reporting", + "crash-reports", + "error-handler", + "error-monitoring", + "laravel", + "log", + "logging", + "profiling", + "sentry", + "tracing" + ], + "support": { + "issues": "https://github.com/getsentry/sentry-laravel/issues", + "source": "https://github.com/getsentry/sentry-laravel/tree/4.16.0" + }, + "funding": [ + { + "url": "https://sentry.io/", + "type": "custom" + }, + { + "url": "https://sentry.io/pricing/", + "type": "custom" + } + ], + "time": "2025-09-10T16:38:18+00:00" + }, + { + "name": "symfony/clock", + "version": "v7.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/clock.git", + "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24", + "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/clock": "^1.0", + "symfony/polyfill-php83": "^1.28" + }, + "provide": { "psr/clock-implementation": "1.0" }, "type": "library", @@ -3892,7 +4354,7 @@ "time" ], "support": { - "source": "https://github.com/symfony/clock/tree/v7.2.0" + "source": "https://github.com/symfony/clock/tree/v7.3.0" }, "funding": [ { @@ -3912,23 +4374,24 @@ }, { "name": "symfony/console", - "version": "v7.2.5", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "e51498ea18570c062e7df29d05a7003585b19b88" + "reference": "cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/e51498ea18570c062e7df29d05a7003585b19b88", - "reference": "e51498ea18570c062e7df29d05a7003585b19b88", + "url": "https://api.github.com/repos/symfony/console/zipball/cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7", + "reference": "cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7", "shasum": "" }, "require": { "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", "symfony/service-contracts": "^2.5|^3", - "symfony/string": "^6.4|^7.0" + "symfony/string": "^7.2" }, "conflict": { "symfony/dependency-injection": "<6.4", @@ -3985,7 +4448,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v7.2.5" + "source": "https://github.com/symfony/console/tree/v7.3.3" }, "funding": [ { @@ -3996,16 +4459,20 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-03-12T08:11:12+00:00" + "time": "2025-08-25T06:35:40+00:00" }, { "name": "symfony/css-selector", - "version": "v7.2.0", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", @@ -4050,7 +4517,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v7.2.0" + "source": "https://github.com/symfony/css-selector/tree/v7.3.0" }, "funding": [ { @@ -4070,16 +4537,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62", + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62", "shasum": "" }, "require": { @@ -4092,7 +4559,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -4117,7 +4584,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0" }, "funding": [ { @@ -4133,20 +4600,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/error-handler", - "version": "v7.2.5", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b" + "reference": "0b31a944fcd8759ae294da4d2808cbc53aebd0c3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b", - "reference": "102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/0b31a944fcd8759ae294da4d2808cbc53aebd0c3", + "reference": "0b31a944fcd8759ae294da4d2808cbc53aebd0c3", "shasum": "" }, "require": { @@ -4159,9 +4626,11 @@ "symfony/http-kernel": "<6.4" }, "require-dev": { + "symfony/console": "^6.4|^7.0", "symfony/deprecation-contracts": "^2.5|^3", "symfony/http-kernel": "^6.4|^7.0", - "symfony/serializer": "^6.4|^7.0" + "symfony/serializer": "^6.4|^7.0", + "symfony/webpack-encore-bundle": "^1.0|^2.0" }, "bin": [ "Resources/bin/patch-type-declarations" @@ -4192,7 +4661,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v7.2.5" + "source": "https://github.com/symfony/error-handler/tree/v7.3.2" }, "funding": [ { @@ -4203,25 +4672,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-03-03T07:12:39+00:00" + "time": "2025-07-07T08:17:57+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v7.2.0", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1" + "reference": "b7dc69e71de420ac04bc9ab830cf3ffebba48191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1", - "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b7dc69e71de420ac04bc9ab830cf3ffebba48191", + "reference": "b7dc69e71de420ac04bc9ab830cf3ffebba48191", "shasum": "" }, "require": { @@ -4272,7 +4745,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0" + "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.3" }, "funding": [ { @@ -4283,25 +4756,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-25T14:21:43+00:00" + "time": "2025-08-13T11:49:31+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f" + "reference": "59eb412e93815df44f05f342958efa9f46b1e586" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f", - "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586", + "reference": "59eb412e93815df44f05f342958efa9f46b1e586", "shasum": "" }, "require": { @@ -4315,7 +4792,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -4348,7 +4825,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0" }, "funding": [ { @@ -4364,20 +4841,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/finder", - "version": "v7.2.2", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "87a71856f2f56e4100373e92529eed3171695cfb" + "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb", - "reference": "87a71856f2f56e4100373e92529eed3171695cfb", + "url": "https://api.github.com/repos/symfony/finder/zipball/2a6614966ba1074fa93dae0bc804227422df4dfe", + "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe", "shasum": "" }, "require": { @@ -4412,7 +4889,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v7.2.2" + "source": "https://github.com/symfony/finder/tree/v7.3.2" }, "funding": [ { @@ -4423,25 +4900,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-12-30T19:00:17+00:00" + "time": "2025-07-15T13:41:35+00:00" }, { "name": "symfony/http-foundation", - "version": "v7.2.5", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "371272aeb6286f8135e028ca535f8e4d6f114126" + "reference": "7475561ec27020196c49bb7c4f178d33d7d3dc00" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/371272aeb6286f8135e028ca535f8e4d6f114126", - "reference": "371272aeb6286f8135e028ca535f8e4d6f114126", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/7475561ec27020196c49bb7c4f178d33d7d3dc00", + "reference": "7475561ec27020196c49bb7c4f178d33d7d3dc00", "shasum": "" }, "require": { @@ -4458,6 +4939,7 @@ "doctrine/dbal": "^3.6|^4", "predis/predis": "^1.1|^2.0", "symfony/cache": "^6.4.12|^7.1.5", + "symfony/clock": "^6.4|^7.0", "symfony/dependency-injection": "^6.4|^7.0", "symfony/expression-language": "^6.4|^7.0", "symfony/http-kernel": "^6.4|^7.0", @@ -4490,7 +4972,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v7.2.5" + "source": "https://github.com/symfony/http-foundation/tree/v7.3.3" }, "funding": [ { @@ -4501,25 +4983,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-03-25T15:54:33+00:00" + "time": "2025-08-20T08:04:18+00:00" }, { "name": "symfony/http-kernel", - "version": "v7.2.5", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "b1fe91bc1fa454a806d3f98db4ba826eb9941a54" + "reference": "72c304de37e1a1cec6d5d12b81187ebd4850a17b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b1fe91bc1fa454a806d3f98db4ba826eb9941a54", - "reference": "b1fe91bc1fa454a806d3f98db4ba826eb9941a54", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/72c304de37e1a1cec6d5d12b81187ebd4850a17b", + "reference": "72c304de37e1a1cec6d5d12b81187ebd4850a17b", "shasum": "" }, "require": { @@ -4527,8 +5013,8 @@ "psr/log": "^1|^2|^3", "symfony/deprecation-contracts": "^2.5|^3", "symfony/error-handler": "^6.4|^7.0", - "symfony/event-dispatcher": "^6.4|^7.0", - "symfony/http-foundation": "^6.4|^7.0", + "symfony/event-dispatcher": "^7.3", + "symfony/http-foundation": "^7.3", "symfony/polyfill-ctype": "^1.8" }, "conflict": { @@ -4604,7 +5090,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v7.2.5" + "source": "https://github.com/symfony/http-kernel/tree/v7.3.3" }, "funding": [ { @@ -4615,25 +5101,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-03-28T13:32:50+00:00" + "time": "2025-08-29T08:23:45+00:00" }, { "name": "symfony/mailer", - "version": "v7.2.3", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3" + "reference": "a32f3f45f1990db8c4341d5122a7d3a381c7e575" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/f3871b182c44997cf039f3b462af4a48fb85f9d3", - "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3", + "url": "https://api.github.com/repos/symfony/mailer/zipball/a32f3f45f1990db8c4341d5122a7d3a381c7e575", + "reference": "a32f3f45f1990db8c4341d5122a7d3a381c7e575", "shasum": "" }, "require": { @@ -4684,7 +5174,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v7.2.3" + "source": "https://github.com/symfony/mailer/tree/v7.3.3" }, "funding": [ { @@ -4695,25 +5185,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-01-27T11:08:17+00:00" + "time": "2025-08-13T11:49:31+00:00" }, { "name": "symfony/mime", - "version": "v7.2.4", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "87ca22046b78c3feaff04b337f33b38510fd686b" + "reference": "e0a0f859148daf1edf6c60b398eb40bfc96697d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/87ca22046b78c3feaff04b337f33b38510fd686b", - "reference": "87ca22046b78c3feaff04b337f33b38510fd686b", + "url": "https://api.github.com/repos/symfony/mime/zipball/e0a0f859148daf1edf6c60b398eb40bfc96697d1", + "reference": "e0a0f859148daf1edf6c60b398eb40bfc96697d1", "shasum": "" }, "require": { @@ -4768,7 +5262,78 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v7.2.4" + "source": "https://github.com/symfony/mime/tree/v7.3.2" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-07-15T13:41:35+00:00" + }, + { + "name": "symfony/options-resolver", + "version": "v7.3.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/options-resolver.git", + "reference": "0ff2f5c3df08a395232bbc3c2eb7e84912df911d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0ff2f5c3df08a395232bbc3c2eb7e84912df911d", + "reference": "0ff2f5c3df08a395232bbc3c2eb7e84912df911d", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\OptionsResolver\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an improved replacement for the array_replace PHP function", + "homepage": "https://symfony.com", + "keywords": [ + "config", + "configuration", + "options" + ], + "support": { + "source": "https://github.com/symfony/options-resolver/tree/v7.3.3" }, "funding": [ { @@ -4779,16 +5344,20 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-02-19T08:51:20+00:00" + "time": "2025-08-05T10:16:07+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", @@ -4847,7 +5416,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0" }, "funding": [ { @@ -4858,6 +5427,10 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -4867,16 +5440,16 @@ }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" + "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", - "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70", + "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70", "shasum": "" }, "require": { @@ -4925,7 +5498,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0" }, "funding": [ { @@ -4936,25 +5509,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2025-06-27T09:58:17+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773" + "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773", - "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3", + "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3", "shasum": "" }, "require": { @@ -5008,7 +5585,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0" }, "funding": [ { @@ -5019,16 +5596,20 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-09-10T14:38:51+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", @@ -5089,7 +5670,176 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493", + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493", + "shasum": "" + }, + "require": { + "ext-iconv": "*", + "php": ">=7.2" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-12-23T08:48:59+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608", + "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0" }, "funding": [ { @@ -5097,7 +5847,11 @@ "type": "custom" }, { - "url": "https://github.com/fabpot", + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", "type": "github" }, { @@ -5105,31 +5859,25 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2025-01-02T08:10:11+00:00" }, { - "name": "symfony/polyfill-mbstring", - "version": "v1.31.0", + "name": "symfony/polyfill-php83", + "version": "v1.33.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5", + "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5", "shasum": "" }, "require": { "php": ">=7.2" }, - "provide": { - "ext-mbstring": "*" - }, - "suggest": { - "ext-mbstring": "For best performance" - }, "type": "library", "extra": { "thanks": { @@ -5142,8 +5890,11 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - } + "Symfony\\Polyfill\\Php83\\": "" + }, + "classmap": [ + "Resources/stubs" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -5159,17 +5910,16 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for the Mbstring extension", + "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "mbstring", "polyfill", "portable", "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0" }, "funding": [ { @@ -5180,25 +5930,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2025-07-08T02:45:35+00:00" }, { - "name": "symfony/polyfill-php80", - "version": "v1.31.0", + "name": "symfony/polyfill-php84", + "version": "v1.33.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" + "url": "https://github.com/symfony/polyfill-php84.git", + "reference": "d8ced4d875142b6a7426000426b8abc631d6b191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", - "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191", + "reference": "d8ced4d875142b6a7426000426b8abc631d6b191", "shasum": "" }, "require": { @@ -5216,7 +5970,7 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" + "Symfony\\Polyfill\\Php84\\": "" }, "classmap": [ "Resources/stubs" @@ -5227,10 +5981,6 @@ "MIT" ], "authors": [ - { - "name": "Ion Bazan", - "email": "ion.bazan@gmail.com" - }, { "name": "Nicolas Grekas", "email": "p@tchwork.com" @@ -5240,7 +5990,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -5249,7 +5999,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0" }, "funding": [ { @@ -5260,25 +6010,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2025-06-24T13:30:11+00:00" }, { - "name": "symfony/polyfill-php83", - "version": "v1.31.0", + "name": "symfony/polyfill-php85", + "version": "v1.33.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491" + "url": "https://github.com/symfony/polyfill-php85.git", + "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491", - "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491", + "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91", + "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91", "shasum": "" }, "require": { @@ -5296,7 +6050,7 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Php83\\": "" + "Symfony\\Polyfill\\Php85\\": "" }, "classmap": [ "Resources/stubs" @@ -5316,7 +6070,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -5325,7 +6079,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0" }, "funding": [ { @@ -5336,16 +6090,20 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2025-06-23T16:12:55+00:00" }, { "name": "symfony/polyfill-uuid", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-uuid.git", @@ -5404,7 +6162,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.33.0" }, "funding": [ { @@ -5415,6 +6173,10 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -5424,16 +6186,16 @@ }, { "name": "symfony/process", - "version": "v7.2.5", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "87b7c93e57df9d8e39a093d32587702380ff045d" + "reference": "32241012d521e2e8a9d713adb0812bb773b907f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/87b7c93e57df9d8e39a093d32587702380ff045d", - "reference": "87b7c93e57df9d8e39a093d32587702380ff045d", + "url": "https://api.github.com/repos/symfony/process/zipball/32241012d521e2e8a9d713adb0812bb773b907f1", + "reference": "32241012d521e2e8a9d713adb0812bb773b907f1", "shasum": "" }, "require": { @@ -5465,7 +6227,94 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v7.2.5" + "source": "https://github.com/symfony/process/tree/v7.3.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-08-18T09:42:54+00:00" + }, + { + "name": "symfony/psr-http-message-bridge", + "version": "v7.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/psr-http-message-bridge.git", + "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/03f2f72319e7acaf2a9f6fcbe30ef17eec51594f", + "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/http-message": "^1.0|^2.0", + "symfony/http-foundation": "^6.4|^7.0" + }, + "conflict": { + "php-http/discovery": "<1.15", + "symfony/http-kernel": "<6.4" + }, + "require-dev": { + "nyholm/psr7": "^1.1", + "php-http/discovery": "^1.15", + "psr/log": "^1.1.4|^2|^3", + "symfony/browser-kit": "^6.4|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/framework-bundle": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0" + }, + "type": "symfony-bridge", + "autoload": { + "psr-4": { + "Symfony\\Bridge\\PsrHttpMessage\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "PSR HTTP message bridge", + "homepage": "https://symfony.com", + "keywords": [ + "http", + "http-message", + "psr-17", + "psr-7" + ], + "support": { + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.3.0" }, "funding": [ { @@ -5481,20 +6330,20 @@ "type": "tidelift" } ], - "time": "2025-03-13T12:21:46+00:00" + "time": "2024-09-26T08:57:56+00:00" }, { "name": "symfony/routing", - "version": "v7.2.3", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996" + "reference": "7614b8ca5fa89b9cd233e21b627bfc5774f586e4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996", - "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996", + "url": "https://api.github.com/repos/symfony/routing/zipball/7614b8ca5fa89b9cd233e21b627bfc5774f586e4", + "reference": "7614b8ca5fa89b9cd233e21b627bfc5774f586e4", "shasum": "" }, "require": { @@ -5546,7 +6395,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v7.2.3" + "source": "https://github.com/symfony/routing/tree/v7.3.2" }, "funding": [ { @@ -5557,25 +6406,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-01-17T10:56:55+00:00" + "time": "2025-07-15T11:36:08+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0" + "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0", - "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4", + "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4", "shasum": "" }, "require": { @@ -5593,7 +6446,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -5629,7 +6482,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/service-contracts/tree/v3.6.0" }, "funding": [ { @@ -5645,20 +6498,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2025-04-25T09:37:31+00:00" }, { "name": "symfony/string", - "version": "v7.2.0", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82" + "reference": "17a426cce5fd1f0901fefa9b2a490d0038fd3c9c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/446e0d146f991dde3e73f45f2c97a9faad773c82", - "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82", + "url": "https://api.github.com/repos/symfony/string/zipball/17a426cce5fd1f0901fefa9b2a490d0038fd3c9c", + "reference": "17a426cce5fd1f0901fefa9b2a490d0038fd3c9c", "shasum": "" }, "require": { @@ -5716,7 +6569,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v7.2.0" + "source": "https://github.com/symfony/string/tree/v7.3.3" }, "funding": [ { @@ -5727,25 +6580,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-11-13T13:31:26+00:00" + "time": "2025-08-25T06:35:40+00:00" }, { "name": "symfony/translation", - "version": "v7.2.4", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "283856e6981286cc0d800b53bd5703e8e363f05a" + "reference": "e0837b4cbcef63c754d89a4806575cada743a38d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/283856e6981286cc0d800b53bd5703e8e363f05a", - "reference": "283856e6981286cc0d800b53bd5703e8e363f05a", + "url": "https://api.github.com/repos/symfony/translation/zipball/e0837b4cbcef63c754d89a4806575cada743a38d", + "reference": "e0837b4cbcef63c754d89a4806575cada743a38d", "shasum": "" }, "require": { @@ -5755,6 +6612,7 @@ "symfony/translation-contracts": "^2.5|^3.0" }, "conflict": { + "nikic/php-parser": "<5.0", "symfony/config": "<6.4", "symfony/console": "<6.4", "symfony/dependency-injection": "<6.4", @@ -5768,7 +6626,7 @@ "symfony/translation-implementation": "2.3|3.0" }, "require-dev": { - "nikic/php-parser": "^4.18|^5.0", + "nikic/php-parser": "^5.0", "psr/log": "^1|^2|^3", "symfony/config": "^6.4|^7.0", "symfony/console": "^6.4|^7.0", @@ -5811,7 +6669,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v7.2.4" + "source": "https://github.com/symfony/translation/tree/v7.3.3" }, "funding": [ { @@ -5822,25 +6680,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-02-13T10:27:23+00:00" + "time": "2025-08-01T21:02:37+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c" + "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d", + "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d", "shasum": "" }, "require": { @@ -5853,7 +6715,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -5889,7 +6751,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0" }, "funding": [ { @@ -5905,20 +6767,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-09-27T08:32:26+00:00" }, { "name": "symfony/uid", - "version": "v7.2.0", + "version": "v7.3.1", "source": { "type": "git", "url": "https://github.com/symfony/uid.git", - "reference": "2d294d0c48df244c71c105a169d0190bfb080426" + "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426", - "reference": "2d294d0c48df244c71c105a169d0190bfb080426", + "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb", + "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb", "shasum": "" }, "require": { @@ -5963,7 +6825,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/uid/tree/v7.2.0" + "source": "https://github.com/symfony/uid/tree/v7.3.1" }, "funding": [ { @@ -5979,31 +6841,31 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:21:43+00:00" + "time": "2025-06-27T19:55:54+00:00" }, { "name": "symfony/var-dumper", - "version": "v7.2.3", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "82b478c69745d8878eb60f9a049a4d584996f73a" + "reference": "34d8d4c4b9597347306d1ec8eb4e1319b1e6986f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/82b478c69745d8878eb60f9a049a4d584996f73a", - "reference": "82b478c69745d8878eb60f9a049a4d584996f73a", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/34d8d4c4b9597347306d1ec8eb4e1319b1e6986f", + "reference": "34d8d4c4b9597347306d1ec8eb4e1319b1e6986f", "shasum": "" }, "require": { "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0" }, "conflict": { "symfony/console": "<6.4" }, "require-dev": { - "ext-iconv": "*", "symfony/console": "^6.4|^7.0", "symfony/http-kernel": "^6.4|^7.0", "symfony/process": "^6.4|^7.0", @@ -6046,7 +6908,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v7.2.3" + "source": "https://github.com/symfony/var-dumper/tree/v7.3.3" }, "funding": [ { @@ -6057,12 +6919,16 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-01-17T11:39:41+00:00" + "time": "2025-08-13T11:49:31+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -6121,16 +6987,16 @@ }, { "name": "tymon/jwt-auth", - "version": "2.2.0", + "version": "2.2.1", "source": { "type": "git", "url": "https://github.com/tymondesigns/jwt-auth.git", - "reference": "6c98cea2c3f11a71c0c7f982dd2d76e64247ee28" + "reference": "42381e56db1bf887c12e5302d11901d65cc74856" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/6c98cea2c3f11a71c0c7f982dd2d76e64247ee28", - "reference": "6c98cea2c3f11a71c0c7f982dd2d76e64247ee28", + "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/42381e56db1bf887c12e5302d11901d65cc74856", + "reference": "42381e56db1bf887c12e5302d11901d65cc74856", "shasum": "" }, "require": { @@ -6201,20 +7067,20 @@ "type": "patreon" } ], - "time": "2025-02-28T08:14:11+00:00" + "time": "2025-04-16T22:22:54+00:00" }, { "name": "vlucas/phpdotenv", - "version": "v5.6.1", + "version": "v5.6.2", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2" + "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2", - "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af", + "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af", "shasum": "" }, "require": { @@ -6273,7 +7139,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1" + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2" }, "funding": [ { @@ -6285,7 +7151,7 @@ "type": "tidelift" } ], - "time": "2024-07-20T21:52:34+00:00" + "time": "2025-04-30T23:37:27+00:00" }, { "name": "voku/portable-ascii", @@ -6423,16 +7289,16 @@ "packages-dev": [ { "name": "brianium/paratest", - "version": "v7.8.3", + "version": "v7.8.4", "source": { "type": "git", "url": "https://github.com/paratestphp/paratest.git", - "reference": "a585c346ddf1bec22e51e20b5387607905604a71" + "reference": "130a9bf0e269ee5f5b320108f794ad03e275cad4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paratestphp/paratest/zipball/a585c346ddf1bec22e51e20b5387607905604a71", - "reference": "a585c346ddf1bec22e51e20b5387607905604a71", + "url": "https://api.github.com/repos/paratestphp/paratest/zipball/130a9bf0e269ee5f5b320108f794ad03e275cad4", + "reference": "130a9bf0e269ee5f5b320108f794ad03e275cad4", "shasum": "" }, "require": { @@ -6441,26 +7307,26 @@ "ext-reflection": "*", "ext-simplexml": "*", "fidry/cpu-core-counter": "^1.2.0", - "jean85/pretty-package-versions": "^2.1.0", + "jean85/pretty-package-versions": "^2.1.1", "php": "~8.2.0 || ~8.3.0 || ~8.4.0", - "phpunit/php-code-coverage": "^11.0.9 || ^12.0.4", - "phpunit/php-file-iterator": "^5.1.0 || ^6", - "phpunit/php-timer": "^7.0.1 || ^8", - "phpunit/phpunit": "^11.5.11 || ^12.0.6", - "sebastian/environment": "^7.2.0 || ^8", - "symfony/console": "^6.4.17 || ^7.2.1", - "symfony/process": "^6.4.19 || ^7.2.4" + "phpunit/php-code-coverage": "^11.0.10", + "phpunit/php-file-iterator": "^5.1.0", + "phpunit/php-timer": "^7.0.1", + "phpunit/phpunit": "^11.5.24", + "sebastian/environment": "^7.2.1", + "symfony/console": "^6.4.22 || ^7.3.0", + "symfony/process": "^6.4.20 || ^7.3.0" }, "require-dev": { "doctrine/coding-standard": "^12.0.0", "ext-pcov": "*", "ext-posix": "*", - "phpstan/phpstan": "^2.1.6", - "phpstan/phpstan-deprecation-rules": "^2.0.1", - "phpstan/phpstan-phpunit": "^2.0.4", - "phpstan/phpstan-strict-rules": "^2.0.3", - "squizlabs/php_codesniffer": "^3.11.3", - "symfony/filesystem": "^6.4.13 || ^7.2.0" + "phpstan/phpstan": "^2.1.17", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpstan/phpstan-phpunit": "^2.0.6", + "phpstan/phpstan-strict-rules": "^2.0.4", + "squizlabs/php_codesniffer": "^3.13.2", + "symfony/filesystem": "^6.4.13 || ^7.3.0" }, "bin": [ "bin/paratest", @@ -6500,7 +7366,7 @@ ], "support": { "issues": "https://github.com/paratestphp/paratest/issues", - "source": "https://github.com/paratestphp/paratest/tree/v7.8.3" + "source": "https://github.com/paratestphp/paratest/tree/v7.8.4" }, "funding": [ { @@ -6512,7 +7378,7 @@ "type": "paypal" } ], - "time": "2025-03-05T08:29:11+00:00" + "time": "2025-06-23T06:07:21+00:00" }, { "name": "fakerphp/faker", @@ -6579,16 +7445,16 @@ }, { "name": "fidry/cpu-core-counter", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/theofidry/cpu-core-counter.git", - "reference": "8520451a140d3f46ac33042715115e290cf5785f" + "reference": "db9508f7b1474469d9d3c53b86f817e344732678" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f", - "reference": "8520451a140d3f46ac33042715115e290cf5785f", + "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/db9508f7b1474469d9d3c53b86f817e344732678", + "reference": "db9508f7b1474469d9d3c53b86f817e344732678", "shasum": "" }, "require": { @@ -6598,10 +7464,10 @@ "fidry/makefile": "^0.2.0", "fidry/php-cs-fixer-config": "^1.1.2", "phpstan/extension-installer": "^1.2.0", - "phpstan/phpstan": "^1.9.2", - "phpstan/phpstan-deprecation-rules": "^1.0.0", - "phpstan/phpstan-phpunit": "^1.2.2", - "phpstan/phpstan-strict-rules": "^1.4.4", + "phpstan/phpstan": "^2.0", + "phpstan/phpstan-deprecation-rules": "^2.0.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpstan/phpstan-strict-rules": "^2.0", "phpunit/phpunit": "^8.5.31 || ^9.5.26", "webmozarts/strict-phpunit": "^7.5" }, @@ -6628,7 +7494,7 @@ ], "support": { "issues": "https://github.com/theofidry/cpu-core-counter/issues", - "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0" + "source": "https://github.com/theofidry/cpu-core-counter/tree/1.3.0" }, "funding": [ { @@ -6636,20 +7502,20 @@ "type": "github" } ], - "time": "2024-08-06T10:04:20+00:00" + "time": "2025-08-14T07:29:31+00:00" }, { "name": "filp/whoops", - "version": "2.18.0", + "version": "2.18.4", "source": { "type": "git", "url": "https://github.com/filp/whoops.git", - "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e" + "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e", - "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e", + "url": "https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d", + "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d", "shasum": "" }, "require": { @@ -6699,7 +7565,7 @@ ], "support": { "issues": "https://github.com/filp/whoops/issues", - "source": "https://github.com/filp/whoops/tree/2.18.0" + "source": "https://github.com/filp/whoops/tree/2.18.4" }, "funding": [ { @@ -6707,24 +7573,24 @@ "type": "github" } ], - "time": "2025-03-15T12:00:00+00:00" + "time": "2025-08-08T12:00:00+00:00" }, { "name": "hamcrest/hamcrest-php", - "version": "v2.0.1", + "version": "v2.1.1", "source": { "type": "git", "url": "https://github.com/hamcrest/hamcrest-php.git", - "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" + "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", - "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487", + "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487", "shasum": "" }, "require": { - "php": "^5.3|^7.0|^8.0" + "php": "^7.4|^8.0" }, "replace": { "cordoval/hamcrest-php": "*", @@ -6732,8 +7598,8 @@ "kodova/hamcrest-php": "*" }, "require-dev": { - "phpunit/php-file-iterator": "^1.4 || ^2.0", - "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" + "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0" }, "type": "library", "extra": { @@ -6756,82 +7622,22 @@ ], "support": { "issues": "https://github.com/hamcrest/hamcrest-php/issues", - "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" - }, - "time": "2020-07-09T08:09:16+00:00" - }, - { - "name": "jean85/pretty-package-versions", - "version": "2.1.1", - "source": { - "type": "git", - "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a", - "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a", - "shasum": "" - }, - "require": { - "composer-runtime-api": "^2.1.0", - "php": "^7.4|^8.0" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^3.2", - "jean85/composer-provided-replaced-stub-package": "^1.0", - "phpstan/phpstan": "^2.0", - "phpunit/phpunit": "^7.5|^8.5|^9.6", - "rector/rector": "^2.0", - "vimeo/psalm": "^4.3 || ^5.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Jean85\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Alessandro Lai", - "email": "alessandro.lai85@gmail.com" - } - ], - "description": "A library to get pretty versions strings of installed dependencies", - "keywords": [ - "composer", - "package", - "release", - "versions" - ], - "support": { - "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1" + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1" }, - "time": "2025-03-19T14:43:43+00:00" + "time": "2025-04-30T06:54:44+00:00" }, { "name": "laravel/breeze", - "version": "v2.3.6", + "version": "v2.3.8", "source": { "type": "git", "url": "https://github.com/laravel/breeze.git", - "reference": "390cbc433cb72fa6050965000b2d56c9ba6fd713" + "reference": "1a29c5792818bd4cddf70b5f743a227e02fbcfcd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/breeze/zipball/390cbc433cb72fa6050965000b2d56c9ba6fd713", - "reference": "390cbc433cb72fa6050965000b2d56c9ba6fd713", + "url": "https://api.github.com/repos/laravel/breeze/zipball/1a29c5792818bd4cddf70b5f743a227e02fbcfcd", + "reference": "1a29c5792818bd4cddf70b5f743a227e02fbcfcd", "shasum": "" }, "require": { @@ -6879,20 +7685,20 @@ "issues": "https://github.com/laravel/breeze/issues", "source": "https://github.com/laravel/breeze" }, - "time": "2025-03-06T14:02:32+00:00" + "time": "2025-07-18T18:49:59+00:00" }, { "name": "laravel/pint", - "version": "v1.21.2", + "version": "v1.25.1", "source": { "type": "git", "url": "https://github.com/laravel/pint.git", - "reference": "370772e7d9e9da087678a0edf2b11b6960e40558" + "reference": "5016e263f95d97670d71b9a987bd8996ade6d8d9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/pint/zipball/370772e7d9e9da087678a0edf2b11b6960e40558", - "reference": "370772e7d9e9da087678a0edf2b11b6960e40558", + "url": "https://api.github.com/repos/laravel/pint/zipball/5016e263f95d97670d71b9a987bd8996ade6d8d9", + "reference": "5016e263f95d97670d71b9a987bd8996ade6d8d9", "shasum": "" }, "require": { @@ -6903,12 +7709,12 @@ "php": "^8.2.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.72.0", - "illuminate/view": "^11.44.2", - "larastan/larastan": "^3.2.0", - "laravel-zero/framework": "^11.36.1", + "friendsofphp/php-cs-fixer": "^3.87.2", + "illuminate/view": "^11.46.0", + "larastan/larastan": "^3.7.1", + "laravel-zero/framework": "^11.45.0", "mockery/mockery": "^1.6.12", - "nunomaduro/termwind": "^2.3", + "nunomaduro/termwind": "^2.3.1", "pestphp/pest": "^2.36.0" }, "bin": [ @@ -6945,20 +7751,20 @@ "issues": "https://github.com/laravel/pint/issues", "source": "https://github.com/laravel/pint" }, - "time": "2025-03-14T22:31:42+00:00" + "time": "2025-09-19T02:57:12+00:00" }, { "name": "laravel/sail", - "version": "v1.41.0", + "version": "v1.45.0", "source": { "type": "git", "url": "https://github.com/laravel/sail.git", - "reference": "fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec" + "reference": "019a2933ff4a9199f098d4259713f9bc266a874e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sail/zipball/fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec", - "reference": "fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec", + "url": "https://api.github.com/repos/laravel/sail/zipball/019a2933ff4a9199f098d4259713f9bc266a874e", + "reference": "019a2933ff4a9199f098d4259713f9bc266a874e", "shasum": "" }, "require": { @@ -7008,7 +7814,7 @@ "issues": "https://github.com/laravel/sail/issues", "source": "https://github.com/laravel/sail" }, - "time": "2025-01-24T15:45:36+00:00" + "time": "2025-08-25T19:28:31+00:00" }, { "name": "lucascudo/laravel-pt-br-localization", @@ -7154,16 +7960,16 @@ }, { "name": "myclabs/deep-copy", - "version": "1.13.0", + "version": "1.13.4", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "024473a478be9df5fdaca2c793f2232fe788e414" + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414", - "reference": "024473a478be9df5fdaca2c793f2232fe788e414", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a", "shasum": "" }, "require": { @@ -7202,7 +8008,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0" + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4" }, "funding": [ { @@ -7210,27 +8016,27 @@ "type": "tidelift" } ], - "time": "2025-02-12T12:17:51+00:00" + "time": "2025-08-01T08:46:24+00:00" }, { "name": "nunomaduro/collision", - "version": "v8.8.0", + "version": "v8.8.2", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "4cf9f3b47afff38b139fb79ce54fc71799022ce8" + "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/4cf9f3b47afff38b139fb79ce54fc71799022ce8", - "reference": "4cf9f3b47afff38b139fb79ce54fc71799022ce8", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/60207965f9b7b7a4ce15a0f75d57f9dadb105bdb", + "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb", "shasum": "" }, "require": { - "filp/whoops": "^2.18.0", - "nunomaduro/termwind": "^2.3.0", + "filp/whoops": "^2.18.1", + "nunomaduro/termwind": "^2.3.1", "php": "^8.2.0", - "symfony/console": "^7.2.5" + "symfony/console": "^7.3.0" }, "conflict": { "laravel/framework": "<11.44.2 || >=13.0.0", @@ -7238,15 +8044,15 @@ }, "require-dev": { "brianium/paratest": "^7.8.3", - "larastan/larastan": "^3.2", - "laravel/framework": "^11.44.2 || ^12.6", - "laravel/pint": "^1.21.2", - "laravel/sail": "^1.41.0", - "laravel/sanctum": "^4.0.8", + "larastan/larastan": "^3.4.2", + "laravel/framework": "^11.44.2 || ^12.18", + "laravel/pint": "^1.22.1", + "laravel/sail": "^1.43.1", + "laravel/sanctum": "^4.1.1", "laravel/tinker": "^2.10.1", - "orchestra/testbench-core": "^9.12.0 || ^10.1", - "pestphp/pest": "^3.8.0", - "sebastian/environment": "^7.2.0 || ^8.0" + "orchestra/testbench-core": "^9.12.0 || ^10.4", + "pestphp/pest": "^3.8.2", + "sebastian/environment": "^7.2.1 || ^8.0" }, "type": "library", "extra": { @@ -7309,7 +8115,7 @@ "type": "patreon" } ], - "time": "2025-04-03T14:33:09+00:00" + "time": "2025-06-25T02:12:12+00:00" }, { "name": "phar-io/manifest", @@ -7431,16 +8237,16 @@ }, { "name": "phpunit/php-code-coverage", - "version": "11.0.9", + "version": "11.0.11", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7" + "reference": "4f7722aa9a7b76aa775e2d9d4e95d1ea16eeeef4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/14d63fbcca18457e49c6f8bebaa91a87e8e188d7", - "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/4f7722aa9a7b76aa775e2d9d4e95d1ea16eeeef4", + "reference": "4f7722aa9a7b76aa775e2d9d4e95d1ea16eeeef4", "shasum": "" }, "require": { @@ -7497,15 +8303,27 @@ "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.9" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.11" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage", + "type": "tidelift" } ], - "time": "2025-02-25T13:26:39+00:00" + "time": "2025-08-27T14:37:49+00:00" }, { "name": "phpunit/php-file-iterator", @@ -7754,16 +8572,16 @@ }, { "name": "phpunit/phpunit", - "version": "11.5.15", + "version": "11.5.39", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c" + "reference": "ad5597f79d8489d2870073ac0bc0dd0ad1fa9931" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c", - "reference": "4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/ad5597f79d8489d2870073ac0bc0dd0ad1fa9931", + "reference": "ad5597f79d8489d2870073ac0bc0dd0ad1fa9931", "shasum": "" }, "require": { @@ -7773,24 +8591,24 @@ "ext-mbstring": "*", "ext-xml": "*", "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.13.0", + "myclabs/deep-copy": "^1.13.4", "phar-io/manifest": "^2.0.4", "phar-io/version": "^3.2.1", "php": ">=8.2", - "phpunit/php-code-coverage": "^11.0.9", + "phpunit/php-code-coverage": "^11.0.11", "phpunit/php-file-iterator": "^5.1.0", "phpunit/php-invoker": "^5.0.1", "phpunit/php-text-template": "^4.0.1", "phpunit/php-timer": "^7.0.1", "sebastian/cli-parser": "^3.0.2", "sebastian/code-unit": "^3.0.3", - "sebastian/comparator": "^6.3.1", + "sebastian/comparator": "^6.3.2", "sebastian/diff": "^6.0.2", - "sebastian/environment": "^7.2.0", + "sebastian/environment": "^7.2.1", "sebastian/exporter": "^6.3.0", "sebastian/global-state": "^7.0.2", "sebastian/object-enumerator": "^6.0.1", - "sebastian/type": "^5.1.2", + "sebastian/type": "^5.1.3", "sebastian/version": "^5.0.2", "staabm/side-effects-detector": "^1.0.5" }, @@ -7835,7 +8653,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.15" + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.39" }, "funding": [ { @@ -7846,12 +8664,20 @@ "url": "https://github.com/sebastianbergmann", "type": "github" }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, { "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", "type": "tidelift" } ], - "time": "2025-03-23T16:02:11+00:00" + "time": "2025-09-14T06:20:41+00:00" }, { "name": "sebastian/cli-parser", @@ -8025,16 +8851,16 @@ }, { "name": "sebastian/comparator", - "version": "6.3.1", + "version": "6.3.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959" + "reference": "85c77556683e6eee4323e4c5468641ca0237e2e8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959", - "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/85c77556683e6eee4323e4c5468641ca0237e2e8", + "reference": "85c77556683e6eee4323e4c5468641ca0237e2e8", "shasum": "" }, "require": { @@ -8093,15 +8919,27 @@ "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", "security": "https://github.com/sebastianbergmann/comparator/security/policy", - "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1" + "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.2" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator", + "type": "tidelift" } ], - "time": "2025-03-07T06:57:01+00:00" + "time": "2025-08-10T08:07:46+00:00" }, { "name": "sebastian/complexity", @@ -8230,23 +9068,23 @@ }, { "name": "sebastian/environment", - "version": "7.2.0", + "version": "7.2.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5" + "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5", - "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4", + "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4", "shasum": "" }, "require": { "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^11.0" + "phpunit/phpunit": "^11.3" }, "suggest": { "ext-posix": "*" @@ -8282,28 +9120,40 @@ "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", "security": "https://github.com/sebastianbergmann/environment/security/policy", - "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0" + "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/environment", + "type": "tidelift" } ], - "time": "2024-07-03T04:54:44+00:00" + "time": "2025-05-21T11:55:47+00:00" }, { "name": "sebastian/exporter", - "version": "6.3.0", + "version": "6.3.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3" + "reference": "8f67e53d3fcaf53105f95cc14f1630493d0fa2e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3", - "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/8f67e53d3fcaf53105f95cc14f1630493d0fa2e6", + "reference": "8f67e53d3fcaf53105f95cc14f1630493d0fa2e6", "shasum": "" }, "require": { @@ -8317,7 +9167,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "6.1-dev" + "dev-main": "6.3-dev" } }, "autoload": { @@ -8360,15 +9210,27 @@ "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", "security": "https://github.com/sebastianbergmann/exporter/security/policy", - "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0" + "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.1" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter", + "type": "tidelift" } ], - "time": "2024-12-05T09:17:50+00:00" + "time": "2025-09-22T05:34:00+00:00" }, { "name": "sebastian/global-state", @@ -8606,23 +9468,23 @@ }, { "name": "sebastian/recursion-context", - "version": "6.0.2", + "version": "6.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "694d156164372abbd149a4b85ccda2e4670c0e16" + "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16", - "reference": "694d156164372abbd149a4b85ccda2e4670c0e16", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/f6458abbf32a6c8174f8f26261475dc133b3d9dc", + "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc", "shasum": "" }, "require": { "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^11.0" + "phpunit/phpunit": "^11.3" }, "type": "library", "extra": { @@ -8658,28 +9520,40 @@ "support": { "issues": "https://github.com/sebastianbergmann/recursion-context/issues", "security": "https://github.com/sebastianbergmann/recursion-context/security/policy", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2" + "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.3" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context", + "type": "tidelift" } ], - "time": "2024-07-03T05:10:34+00:00" + "time": "2025-08-13T04:42:22+00:00" }, { "name": "sebastian/type", - "version": "5.1.2", + "version": "5.1.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e" + "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e", - "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/f77d2d4e78738c98d9a68d2596fe5e8fa380f449", + "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449", "shasum": "" }, "require": { @@ -8715,15 +9589,27 @@ "support": { "issues": "https://github.com/sebastianbergmann/type/issues", "security": "https://github.com/sebastianbergmann/type/security/policy", - "source": "https://github.com/sebastianbergmann/type/tree/5.1.2" + "source": "https://github.com/sebastianbergmann/type/tree/5.1.3" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/type", + "type": "tidelift" } ], - "time": "2025-03-18T13:35:50+00:00" + "time": "2025-08-09T06:55:48+00:00" }, { "name": "sebastian/version", @@ -8781,16 +9667,16 @@ }, { "name": "spatie/backtrace", - "version": "1.7.1", + "version": "1.8.1", "source": { "type": "git", "url": "https://github.com/spatie/backtrace.git", - "reference": "0f2477c520e3729de58e061b8192f161c99f770b" + "reference": "8c0f16a59ae35ec8c62d85c3c17585158f430110" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/backtrace/zipball/0f2477c520e3729de58e061b8192f161c99f770b", - "reference": "0f2477c520e3729de58e061b8192f161c99f770b", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/8c0f16a59ae35ec8c62d85c3c17585158f430110", + "reference": "8c0f16a59ae35ec8c62d85c3c17585158f430110", "shasum": "" }, "require": { @@ -8828,7 +9714,8 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/backtrace/tree/1.7.1" + "issues": "https://github.com/spatie/backtrace/issues", + "source": "https://github.com/spatie/backtrace/tree/1.8.1" }, "funding": [ { @@ -8840,7 +9727,7 @@ "type": "other" } ], - "time": "2024-12-02T13:28:15+00:00" + "time": "2025-08-26T08:22:30+00:00" }, { "name": "spatie/error-solutions", @@ -9213,16 +10100,16 @@ }, { "name": "symfony/yaml", - "version": "v7.2.5", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "4c4b6f4cfcd7e52053f0c8bfad0f7f30fb924912" + "reference": "d4f4a66866fe2451f61296924767280ab5732d9d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/4c4b6f4cfcd7e52053f0c8bfad0f7f30fb924912", - "reference": "4c4b6f4cfcd7e52053f0c8bfad0f7f30fb924912", + "url": "https://api.github.com/repos/symfony/yaml/zipball/d4f4a66866fe2451f61296924767280ab5732d9d", + "reference": "d4f4a66866fe2451f61296924767280ab5732d9d", "shasum": "" }, "require": { @@ -9265,7 +10152,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v7.2.5" + "source": "https://github.com/symfony/yaml/tree/v7.3.3" }, "funding": [ { @@ -9276,12 +10163,16 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-03-03T07:12:39+00:00" + "time": "2025-08-27T11:34:33+00:00" }, { "name": "theseer/tokenizer", diff --git a/config/app.php b/config/app.php index 9f34966..ee550c1 100644 --- a/config/app.php +++ b/config/app.php @@ -125,20 +125,4 @@ 'mapa_url' => env('MAPA_URL'), - 'rabbitmq' => [ - 'host' => env('RABBITMQ_DEFAULT_HOST'), - 'port' => env('RABBITMQ_DEFAULT_PORT'), - 'user' => env('RABBITMQ_DEFAULT_USER'), - 'pass' => env('RABBITMQ_DEFAULT_PASS'), - 'queues' => [ - 'accountability' => env('RABBITMQ_QUEUE_PC'), - 'published_recourses' => env('RABBITMQ_QUEUE_PUBLISHED_RECOURSES'), - 'opinions_published' => env('RABBITMQ_QUEUE_OPINIONS_PUBLISHED'), - ], - 'exchanges' => [ - 'plugins' => env('RABBITMQ_EXCHANGE_PLUGINS'), - ], - 'route_key_prop' => env('RABBITMQ_QUEUE_PC_ROUTE_KEY_PROP'), - 'route_key_adm' => env('RABBITMQ_QUEUE_PC_ROUTE_KEY_ADM'), - ], ]; diff --git a/config/audit.php b/config/audit.php new file mode 100644 index 0000000..38a16b0 --- /dev/null +++ b/config/audit.php @@ -0,0 +1,198 @@ + env('AUDITING_ENABLED', true), + + /* + |-------------------------------------------------------------------------- + | Audit Implementation + |-------------------------------------------------------------------------- + | + | Define which Audit model implementation should be used. + | + */ + + 'implementation' => OwenIt\Auditing\Models\Audit::class, + + /* + |-------------------------------------------------------------------------- + | User Morph prefix & Guards + |-------------------------------------------------------------------------- + | + | Define the morph prefix and authentication guards for the User resolver. + | + */ + + 'user' => [ + 'morph_prefix' => 'user', + 'guards' => [ + 'web', + 'api', + ], + 'resolver' => OwenIt\Auditing\Resolvers\UserResolver::class, + ], + + /* + |-------------------------------------------------------------------------- + | Audit Resolvers + |-------------------------------------------------------------------------- + | + | Define the IP Address, User Agent and URL resolver implementations. + | + */ + 'resolvers' => [ + 'ip_address' => OwenIt\Auditing\Resolvers\IpAddressResolver::class, + 'user_agent' => OwenIt\Auditing\Resolvers\UserAgentResolver::class, + 'url' => OwenIt\Auditing\Resolvers\UrlResolver::class, + ], + + /* + |-------------------------------------------------------------------------- + | Audit Events + |-------------------------------------------------------------------------- + | + | The Eloquent events that trigger an Audit. + | + */ + + 'events' => [ + 'created', + 'updated', + 'deleted', + 'restored', + ], + + /* + |-------------------------------------------------------------------------- + | Strict Mode + |-------------------------------------------------------------------------- + | + | Enable the strict mode when auditing? + | + */ + + 'strict' => false, + + /* + |-------------------------------------------------------------------------- + | Global exclude + |-------------------------------------------------------------------------- + | + | Have something you always want to exclude by default? - add it here. + | Note that this is overwritten (not merged) with local exclude + | + */ + + 'exclude' => [], + + /* + |-------------------------------------------------------------------------- + | Empty Values + |-------------------------------------------------------------------------- + | + | Should Audit records be stored when the recorded old_values & new_values + | are both empty? + | + | Some events may be empty on purpose. Use allowed_empty_values to exclude + | those from the empty values check. For example when auditing + | model retrieved events which will never have new and old values. + | + | + */ + + 'empty_values' => true, + 'allowed_empty_values' => [ + 'retrieved', + ], + + /* + |-------------------------------------------------------------------------- + | Allowed Array Values + |-------------------------------------------------------------------------- + | + | Should the array values be audited? + | + | By default, array values are not allowed. This is to prevent performance + | issues when storing large amounts of data. You can override this by + | setting allow_array_values to true. + */ + 'allowed_array_values' => false, + + /* + |-------------------------------------------------------------------------- + | Audit Timestamps + |-------------------------------------------------------------------------- + | + | Should the created_at, updated_at and deleted_at timestamps be audited? + | + */ + + 'timestamps' => false, + + /* + |-------------------------------------------------------------------------- + | Audit Threshold + |-------------------------------------------------------------------------- + | + | Specify a threshold for the amount of Audit records a model can have. + | Zero means no limit. + | + */ + + 'threshold' => 0, + + /* + |-------------------------------------------------------------------------- + | Audit Driver + |-------------------------------------------------------------------------- + | + | The default audit driver used to keep track of changes. + | + */ + + 'driver' => 'database', + + /* + |-------------------------------------------------------------------------- + | Audit Driver Configurations + |-------------------------------------------------------------------------- + | + | Available audit drivers and respective configurations. + | + */ + + 'drivers' => [ + 'database' => [ + 'table' => 'audits', + 'connection' => null, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Audit Queue Configurations + |-------------------------------------------------------------------------- + | + | Available audit queue configurations. + | + */ + + 'queue' => [ + 'enable' => false, + 'connection' => 'sync', + 'queue' => 'default', + 'delay' => 0, + ], + + /* + |-------------------------------------------------------------------------- + | Audit Console + |-------------------------------------------------------------------------- + | + | Whether console events should be audited (eg. php artisan db:seed). + | + */ + + 'console' => env('AUDITING_CONSOLE', true), +]; diff --git a/config/rabbitmq.php b/config/rabbitmq.php new file mode 100644 index 0000000..e2c5796 --- /dev/null +++ b/config/rabbitmq.php @@ -0,0 +1,21 @@ + env('RABBITMQ_DEFAULT_HOST', 'localhost'), + 'port' => env('RABBITMQ_DEFAULT_PORT', 5672), + 'user' => env('RABBITMQ_DEFAULT_USER', 'guest'), + 'pass' => env('RABBITMQ_DEFAULT_PASS', 'guest'), + 'vhost' => env('RABBITMQ_VHOST', '/'), + 'exchange_default' => env('RABBITMQ_EXCHANGE_DEFAULT', 'exchange_notification'), + 'queues' => [ + 'queue_opinion_management' => env('QUEUE_OPINION_MANAGEMENT', 'queue_opinion_management'), + 'queue_import_registration' => env('QUEUE_IMPORT_REGISTRATION', 'queue_import_registration'), + 'queue_published_recourses' => env('QUEUE_PUBLISHED_RECOURSES', 'queue_published_recourses'), + 'queue_accountability' => env('QUEUE_ACCOUNTABILITY', 'queue_accountability'), + ], + 'routing' => [ + 'module_import_registration_draft' => env('MODULE_IMPORT_REGISTRATION_DRAFT', 'module_import_registration_draft'), + 'module_accountability_proponent' => env('MODULE_ACCOUNTABILITY_PROPONENT', 'module_accountability_proponent'), + 'module_accountability_adm' => env('MODULE_ACCOUNTABILITY_ADM', 'module_accountability_adm'), + 'plugin_published_recourses' => env('PLUGIN_PUBLISHED_RECOURSES', 'plugin_published_recourses'), + ], +]; diff --git a/config/sentry.php b/config/sentry.php new file mode 100644 index 0000000..b293cb3 --- /dev/null +++ b/config/sentry.php @@ -0,0 +1,132 @@ + env('SENTRY_LARAVEL_DSN', env('SENTRY_DSN')), + + // @see https://spotlightjs.com/ + // 'spotlight' => env('SENTRY_SPOTLIGHT', false), + + // @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#logger + // 'logger' => Sentry\Logger\DebugFileLogger::class, // By default this will log to `storage_path('logs/sentry.log')` + + // The release version of your application + // Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')) + 'release' => env('SENTRY_RELEASE'), + + // When left empty or `null` the Laravel environment will be used (usually discovered from `APP_ENV` in your `.env`) + 'environment' => env('SENTRY_ENVIRONMENT'), + + // @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#sample-rate + 'sample_rate' => env('SENTRY_SAMPLE_RATE') === null ? 1.0 : (float) env('SENTRY_SAMPLE_RATE'), + + // @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#traces-sample-rate + 'traces_sample_rate' => env('SENTRY_TRACES_SAMPLE_RATE') === null ? null : (float) env('SENTRY_TRACES_SAMPLE_RATE'), + + // @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#profiles-sample-rate + 'profiles_sample_rate' => env('SENTRY_PROFILES_SAMPLE_RATE') === null ? null : (float) env('SENTRY_PROFILES_SAMPLE_RATE'), + + // @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#enable-logs + 'enable_logs' => env('SENTRY_ENABLE_LOGS', false), + + // @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#send-default-pii + 'send_default_pii' => env('SENTRY_SEND_DEFAULT_PII', false), + + // @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#ignore-exceptions + // 'ignore_exceptions' => [], + + // @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#ignore-transactions + 'ignore_transactions' => [ + // Ignore Laravel's default health URL + '/up', + ], + + // Breadcrumb specific configuration + 'breadcrumbs' => [ + // Capture Laravel logs as breadcrumbs + 'logs' => env('SENTRY_BREADCRUMBS_LOGS_ENABLED', true), + + // Capture Laravel cache events (hits, writes etc.) as breadcrumbs + 'cache' => env('SENTRY_BREADCRUMBS_CACHE_ENABLED', true), + + // Capture Livewire components like routes as breadcrumbs + 'livewire' => env('SENTRY_BREADCRUMBS_LIVEWIRE_ENABLED', true), + + // Capture SQL queries as breadcrumbs + 'sql_queries' => env('SENTRY_BREADCRUMBS_SQL_QUERIES_ENABLED', true), + + // Capture SQL query bindings (parameters) in SQL query breadcrumbs + 'sql_bindings' => env('SENTRY_BREADCRUMBS_SQL_BINDINGS_ENABLED', false), + + // Capture queue job information as breadcrumbs + 'queue_info' => env('SENTRY_BREADCRUMBS_QUEUE_INFO_ENABLED', true), + + // Capture command information as breadcrumbs + 'command_info' => env('SENTRY_BREADCRUMBS_COMMAND_JOBS_ENABLED', true), + + // Capture HTTP client request information as breadcrumbs + 'http_client_requests' => env('SENTRY_BREADCRUMBS_HTTP_CLIENT_REQUESTS_ENABLED', true), + + // Capture send notifications as breadcrumbs + 'notifications' => env('SENTRY_BREADCRUMBS_NOTIFICATIONS_ENABLED', true), + ], + + // Performance monitoring specific configuration + 'tracing' => [ + // Trace queue jobs as their own transactions (this enables tracing for queue jobs) + 'queue_job_transactions' => env('SENTRY_TRACE_QUEUE_ENABLED', true), + + // Capture queue jobs as spans when executed on the sync driver + 'queue_jobs' => env('SENTRY_TRACE_QUEUE_JOBS_ENABLED', true), + + // Capture SQL queries as spans + 'sql_queries' => env('SENTRY_TRACE_SQL_QUERIES_ENABLED', true), + + // Capture SQL query bindings (parameters) in SQL query spans + 'sql_bindings' => env('SENTRY_TRACE_SQL_BINDINGS_ENABLED', false), + + // Capture where the SQL query originated from on the SQL query spans + 'sql_origin' => env('SENTRY_TRACE_SQL_ORIGIN_ENABLED', true), + + // Define a threshold in milliseconds for SQL queries to resolve their origin + 'sql_origin_threshold_ms' => env('SENTRY_TRACE_SQL_ORIGIN_THRESHOLD_MS', 100), + + // Capture views rendered as spans + 'views' => env('SENTRY_TRACE_VIEWS_ENABLED', true), + + // Capture Livewire components as spans + 'livewire' => env('SENTRY_TRACE_LIVEWIRE_ENABLED', true), + + // Capture HTTP client requests as spans + 'http_client_requests' => env('SENTRY_TRACE_HTTP_CLIENT_REQUESTS_ENABLED', true), + + // Capture Laravel cache events (hits, writes etc.) as spans + 'cache' => env('SENTRY_TRACE_CACHE_ENABLED', true), + + // Capture Redis operations as spans (this enables Redis events in Laravel) + 'redis_commands' => env('SENTRY_TRACE_REDIS_COMMANDS', false), + + // Capture where the Redis command originated from on the Redis command spans + 'redis_origin' => env('SENTRY_TRACE_REDIS_ORIGIN_ENABLED', true), + + // Capture send notifications as spans + 'notifications' => env('SENTRY_TRACE_NOTIFICATIONS_ENABLED', true), + + // Enable tracing for requests without a matching route (404's) + 'missing_routes' => env('SENTRY_TRACE_MISSING_ROUTES_ENABLED', false), + + // Configures if the performance trace should continue after the response has been sent to the user until the application terminates + // This is required to capture any spans that are created after the response has been sent like queue jobs dispatched using `dispatch(...)->afterResponse()` for example + 'continue_after_response' => env('SENTRY_TRACE_CONTINUE_AFTER_RESPONSE', true), + + // Enable the tracing integrations supplied by Sentry (recommended) + 'default_integrations' => env('SENTRY_TRACE_DEFAULT_INTEGRATIONS_ENABLED', true), + ], + +]; diff --git a/database/migrations/2025_08_26_182420_create_email_dispatches_table.php b/database/migrations/2025_08_26_182420_create_email_dispatches_table.php new file mode 100644 index 0000000..40835aa --- /dev/null +++ b/database/migrations/2025_08_26_182420_create_email_dispatches_table.php @@ -0,0 +1,33 @@ +id(); + $table->string('to'); + $table->string('subject'); + $table->text('content')->nullable(); + $table->string('mailable_type'); + $table->json('meta')->nullable(); + $table->timestamp('dispatched_at'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('email_dispatches'); + } +}; \ No newline at end of file diff --git a/database/migrations/2025_09_11_121830_create_audits_table.php b/database/migrations/2025_09_11_121830_create_audits_table.php new file mode 100644 index 0000000..7ce54a6 --- /dev/null +++ b/database/migrations/2025_09_11_121830_create_audits_table.php @@ -0,0 +1,48 @@ +create($table, function (Blueprint $table) { + + $morphPrefix = config('audit.user.morph_prefix', 'user'); + + $table->bigIncrements('id'); + $table->string($morphPrefix . '_type')->nullable(); + $table->unsignedBigInteger($morphPrefix . '_id')->nullable(); + $table->string('event'); + $table->morphs('auditable'); + $table->text('old_values')->nullable(); + $table->text('new_values')->nullable(); + $table->text('url')->nullable(); + $table->ipAddress('ip_address')->nullable(); + $table->string('user_agent', 1023)->nullable(); + $table->string('tags')->nullable(); + $table->timestamps(); + + $table->index([$morphPrefix . '_id', $morphPrefix . '_type']); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + $connection = config('audit.drivers.database.connection', config('database.default')); + $table = config('audit.drivers.database.table', 'audits'); + + Schema::connection($connection)->drop($table); + } +}; diff --git a/docker-compose-prod.yml b/docker-compose-prod.yml new file mode 100644 index 0000000..7ae532d --- /dev/null +++ b/docker-compose-prod.yml @@ -0,0 +1,101 @@ +services: + db-email: + image: postgres:16 + restart: always + ports: + - "${DB_PORT:-5433}:5432" + environment: + - POSTGRES_DB=${DB_DATABASE} + - POSTGRES_USER=${DB_USERNAME} + - POSTGRES_PASSWORD=${DB_PASSWORD} + - POSTGRES_HOST_AUTH_METHOD=trust + volumes: + - sail-db:/var/lib/postgresql/data + networks: + - sail + + redis: + image: 'redis:alpine' + ports: + - '${FORWARD_REDIS_PORT:-6379}:6379' + volumes: + - 'sail-redis:/data' + networks: + - sail + - mapaservices + healthcheck: + test: [ "CMD", "redis-cli", "ping" ] + retries: 3 + timeout: 5s + + nginxemail: + build: + context: "./docker/nginx" + depends_on: + - fpm-email + volumes: + - ${NGINX_SSL_PATH}:/etc/nginx/ssl + - ${APP_CODE_PATH_HOST}:${APP_CODE_PATH_CONTAINER}${APP_CODE_CONTAINER_FLAG} + - ${NGINX_HOST_LOG_PATH}:/var/log/nginx + - ${NGINX_SITES_PATH}:/etc/nginx/sites-available + ports: + - "${NGINX_HOST_HTTPS_PORT}:443" + - "${NGINX_HOST_HTTP_PORT}:80" + networks: + - sail + - mapaservices + + fpm-email: + build: + context: "./docker/php-fpm" + dockerfile: Dockerfile + container_name: php_api + working_dir: /var/www # Adicionado para consistência + command: > + bash -c "composer update --no-interaction && php artisan migrate && supervisord -c /etc/supervisor/conf.d/supervisord.conf" + volumes: + # Volumes existentes + # - ${APP_CODE_PATH_HOST}:${APP_CODE_PATH_CONTAINER}${APP_CODE_CONTAINER_FLAG} + - .:/var/www + - ./docker/php-fpm/99-xdebug.ini:/usr/local/etc/php/conf.d/99-xdebug.ini + - ./docker/logs:/var/www/html/logs + - ./docker/php-fpm/supervisord.conf:/etc/supervisor/conf.d/supervisord.conf +# - ./docker/logs/worker.log:/var/www/html/storage/logs/worker.log + - ./docker/logs:/var/www/storage/logs + depends_on: # Adicionado para garantir a ordem de inicialização + - db-email + networks: + - sail + - mapaservices + - lab + expose: + - "9000" + + mailpit: + image: 'axllent/mailpit:latest' + ports: + - '${FORWARD_MAILPIT_PORT:-1025}:1025' + - '${FORWARD_MAILPIT_DASHBOARD_PORT:-8025}:8025' + networks: + - sail + - mapaservices + + memcached: + image: 'memcached:alpine' + ports: + - '${FORWARD_MEMCACHED_PORT:-11211}:11211' + networks: + - sail + - mapaservices + +networks: + sail: + driver: bridge + mapaservices: + external: true + lab: +volumes: + sail-db: + driver: local + sail-redis: + driver: local diff --git a/docker-compose.yml b/docker-compose.yml index 13a87bc..df8d860 100755 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,9 +1,37 @@ +version: '3.8' + services: + app: + build: + context: "./docker/php-fpm" + dockerfile: Dockerfile + container_name: php_api + working_dir: /var/www + volumes: + - .:/var/www + - ./docker/php-fpm/99-xdebug.ini:/usr/local/etc/php/conf.d/99-xdebug.ini + - ./docker/logs:/var/www/html/logs + - ./docker/php-fpm/supervisord.conf:/etc/supervisor/conf.d/supervisord.conf +# - ./docker/logs/worker.log:/var/www/html/storage/logs/worker.log + - ./docker/logs:/var/www/storage/logs + ports: + - "8000:8000" + environment: + - APP_ENV=local + - APP_DEBUG=true + - QUEUE_CONNECTION=rabbitmq + depends_on: + db-email: + condition: service_healthy + command: > + bash -c "composer update --no-interaction && php artisan migrate && supervisord -c /etc/supervisor/conf.d/supervisord.conf" + networks: + - sail + - lab + db-email: image: postgres:16 restart: always - ports: - - "5433:5432" environment: - POSTGRES_DB=${DB_DATABASE} - POSTGRES_USER=${DB_USERNAME} @@ -11,53 +39,15 @@ services: - POSTGRES_HOST_AUTH_METHOD=trust volumes: - sail-db:/var/lib/postgresql/data - networks: - - sail - - redis: - image: 'redis:alpine' ports: - - '${FORWARD_REDIS_PORT:-6379}:6379' - volumes: - - 'sail-redis:/data' - networks: - - sail - - lab + - "5433:5432" healthcheck: - test: [ "CMD", "redis-cli", "ping" ] - retries: 3 + test: [ "CMD-SHELL", "pg_isready -U ${DB_USERNAME} -d ${DB_DATABASE}" ] + interval: 5s timeout: 5s - - nginxemail: - build: - context: "./docker/nginx" - depends_on: - - fpm-email - volumes: - - ${NGINX_SSL_PATH}:/etc/nginx/ssl - - ${APP_CODE_PATH_HOST}:${APP_CODE_PATH_CONTAINER}${APP_CODE_CONTAINER_FLAG} - - ${NGINX_HOST_LOG_PATH}:/var/log/nginx - - ${NGINX_SITES_PATH}:/etc/nginx/sites-available - ports: - - "${NGINX_HOST_HTTPS_PORT}:443" - - "${NGINX_HOST_HTTP_PORT}:80" - networks: - - sail - - lab - - fpm-email: - build: - context: "./docker/php-fpm" - container_name: php_api - command: ["supervisord", "-c", "/etc/supervisord.conf"] - volumes: - - ${APP_CODE_PATH_HOST}:${APP_CODE_PATH_CONTAINER}${APP_CODE_CONTAINER_FLAG} - - ./docker/php-fpm/99-xdebug.ini:/usr/local/etc/php/conf.d/99-xdebug.ini + retries: 5 networks: - sail - - lab - expose: - - "9000" mailpit: image: 'axllent/mailpit:latest' @@ -66,24 +56,12 @@ services: - '${FORWARD_MAILPIT_DASHBOARD_PORT:-8025}:8025' networks: - sail - - lab - - memcached: - image: 'memcached:alpine' - ports: - - '${FORWARD_MEMCACHED_PORT:-11211}:11211' - networks: - - sail - - lab networks: sail: driver: bridge lab: - external: true volumes: sail-db: - driver: local - sail-redis: - driver: local + diff --git a/docker/logs/nginx/error.log b/docker/logs/nginx/error.log deleted file mode 100644 index 887ffa4..0000000 --- a/docker/logs/nginx/error.log +++ /dev/null @@ -1,5 +0,0 @@ -2024/03/20 00:52:56 [emerg] 12#12: host not found in upstream "php-fpm:9000" in /etc/nginx/conf.d/upstream.conf:1 -2024/03/20 00:58:24 [emerg] 12#12: host not found in upstream "php-fpm:9000" in /etc/nginx/conf.d/upstream.conf:1 -2024/03/20 01:00:32 [emerg] 12#12: host not found in upstream "php-fpm:9000" in /etc/nginx/conf.d/upstream.conf:1 -2025/03/28 00:00:00 [notice] 65#65: signal process started -2025/03/28 00:00:00 [notice] 66#66: signal process started diff --git a/docker/logs/nginx/laravel_access.log b/docker/logs/nginx/laravel_access.log deleted file mode 100644 index 7cacb6b..0000000 --- a/docker/logs/nginx/laravel_access.log +++ /dev/null @@ -1,967 +0,0 @@ -192.168.96.1 - - [13/Feb/2024:00:57:55 +0000] "GET / HTTP/1.1" 500 118 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:02:16:26 +0000] "GET / HTTP/1.1" 500 118 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:02:16:28 +0000] "GET / HTTP/1.1" 500 118 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:14:34:11 +0000] "GET / HTTP/1.1" 500 1214430 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:14:34:40 +0000] "GET / HTTP/1.1" 500 1214607 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:14:41:06 +0000] "GET / HTTP/1.1" 500 1214596 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:14:59:12 +0000] "GET / HTTP/1.1" 500 1214565 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:01:50 +0000] "GET / HTTP/1.1" 200 12007 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:01:50 +0000] "GET /css/filament/forms/forms.css?v=3.2.32.0 HTTP/1.1" 200 86576 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:01:50 +0000] "GET /js/filament/support/support.js?v=3.2.32.0 HTTP/1.1" 200 129791 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:01:50 +0000] "GET /css/filament/support/support.css?v=3.2.32.0 HTTP/1.1" 200 3147 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:01:50 +0000] "GET /js/filament/support/async-alpine.js?v=3.2.32.0 HTTP/1.1" 200 5266 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:01:50 +0000] "GET /js/filament/notifications/notifications.js?v=3.2.32.0 HTTP/1.1" 200 6921 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:01:50 +0000] "GET /js/filament/support/support.js?v=3.2.32.0 HTTP/1.1" 200 129791 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:01:50 +0000] "GET /js/filament/support/async-alpine.js?v=3.2.32.0 HTTP/1.1" 200 5266 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:01:50 +0000] "GET /js/filament/notifications/notifications.js?v=3.2.32.0 HTTP/1.1" 200 6921 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:02:30 +0000] "GET / HTTP/1.1" 200 12021 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:02:30 +0000] "GET /css/filament/forms/forms.css?v=3.2.32.0 HTTP/1.1" 200 86576 "http://192.168.96.7/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:02:30 +0000] "GET /css/filament/support/support.css?v=3.2.32.0 HTTP/1.1" 200 3147 "http://192.168.96.7/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:02:30 +0000] "GET /js/filament/notifications/notifications.js?v=3.2.32.0 HTTP/1.1" 200 6921 "http://192.168.96.7/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:02:30 +0000] "GET /js/filament/support/async-alpine.js?v=3.2.32.0 HTTP/1.1" 200 5266 "http://192.168.96.7/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:02:30 +0000] "GET /js/filament/support/support.js?v=3.2.32.0 HTTP/1.1" 200 129791 "http://192.168.96.7/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:02:30 +0000] "GET /js/filament/notifications/notifications.js?v=3.2.32.0 HTTP/1.1" 200 6921 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:02:30 +0000] "GET /js/filament/support/async-alpine.js?v=3.2.32.0 HTTP/1.1" 200 5266 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:02:30 +0000] "GET /js/filament/support/support.js?v=3.2.32.0 HTTP/1.1" 200 129791 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:04:41 +0000] "GET / HTTP/1.1" 200 12007 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:04:42 +0000] "GET / HTTP/1.1" 200 12007 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:04:46 +0000] "GET / HTTP/1.1" 200 12007 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:04:47 +0000] "GET / HTTP/1.1" 200 12007 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:05:43 +0000] "GET / HTTP/1.1" 200 11996 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:05:43 +0000] "GET /css/filament/forms/forms.css?v=3.2.32.0 HTTP/1.1" 200 86576 "http://127.0.0.1/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:05:43 +0000] "GET /css/filament/support/support.css?v=3.2.32.0 HTTP/1.1" 200 3147 "http://127.0.0.1/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:05:43 +0000] "GET /js/filament/notifications/notifications.js?v=3.2.32.0 HTTP/1.1" 200 6921 "http://127.0.0.1/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:05:43 +0000] "GET /js/filament/support/async-alpine.js?v=3.2.32.0 HTTP/1.1" 200 5266 "http://127.0.0.1/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:05:43 +0000] "GET /js/filament/support/support.js?v=3.2.32.0 HTTP/1.1" 200 129791 "http://127.0.0.1/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:05:43 +0000] "GET /js/filament/notifications/notifications.js?v=3.2.32.0 HTTP/1.1" 200 6921 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:05:43 +0000] "GET /js/filament/support/async-alpine.js?v=3.2.32.0 HTTP/1.1" 200 5266 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:05:43 +0000] "GET /js/filament/support/support.js?v=3.2.32.0 HTTP/1.1" 200 129791 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:08:06 +0000] "GET / HTTP/1.1" 200 11996 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:08:45 +0000] "GET / HTTP/1.1" 200 12036 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:08:45 +0000] "GET /css/filament/forms/forms.css?v=3.2.32.0 HTTP/1.1" 200 86576 "http://imobiliaria.localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:08:45 +0000] "GET /css/filament/support/support.css?v=3.2.32.0 HTTP/1.1" 200 3147 "http://imobiliaria.localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:08:45 +0000] "GET /js/filament/notifications/notifications.js?v=3.2.32.0 HTTP/1.1" 200 6921 "http://imobiliaria.localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:08:45 +0000] "GET /js/filament/support/async-alpine.js?v=3.2.32.0 HTTP/1.1" 200 5266 "http://imobiliaria.localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:08:45 +0000] "GET /js/filament/support/support.js?v=3.2.32.0 HTTP/1.1" 200 129791 "http://imobiliaria.localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:08:45 +0000] "GET /js/filament/notifications/notifications.js?v=3.2.32.0 HTTP/1.1" 200 6921 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:08:45 +0000] "GET /js/filament/support/async-alpine.js?v=3.2.32.0 HTTP/1.1" 200 5266 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:08:45 +0000] "GET /js/filament/support/support.js?v=3.2.32.0 HTTP/1.1" 200 129791 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:15:44 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:16:18 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:16:19 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:15:16:25 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.18.0.1 - - [13/Feb/2024:15:17:37 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.18.0.1 - - [13/Feb/2024:15:17:38 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.18.0.1 - - [13/Feb/2024:15:17:39 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.18.0.1 - - [13/Feb/2024:15:17:39 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.18.0.1 - - [13/Feb/2024:15:17:40 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.24.0.1 - - [13/Feb/2024:15:18:05 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.24.0.1 - - [13/Feb/2024:15:18:06 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.24.0.1 - - [13/Feb/2024:15:18:07 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.24.0.1 - - [13/Feb/2024:15:18:08 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.24.0.1 - - [13/Feb/2024:15:18:09 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.24.0.1 - - [13/Feb/2024:15:18:11 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.26.0.1 - - [13/Feb/2024:15:24:30 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.26.0.1 - - [13/Feb/2024:15:24:30 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.26.0.1 - - [13/Feb/2024:15:24:31 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.26.0.1 - - [13/Feb/2024:15:24:42 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.26.0.1 - - [13/Feb/2024:15:24:42 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.26.0.1 - - [13/Feb/2024:15:24:43 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.26.0.1 - - [13/Feb/2024:15:24:43 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.26.0.1 - - [13/Feb/2024:15:24:44 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.26.0.1 - - [13/Feb/2024:15:25:02 +0000] "GET / HTTP/1.1" 404 47 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:28:09 +0000] "GET / HTTP/1.1" 200 12127 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:28:09 +0000] "GET /build/assets/app-d38f9efa.css HTTP/1.1" 200 666394 "http://127.0.0.1/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:28:09 +0000] "GET /build/assets/Welcome-665689a9.css HTTP/1.1" 200 811 "http://127.0.0.1/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:28:09 +0000] "GET /build/assets/app-f90d466c.js HTTP/1.1" 200 754287 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:28:09 +0000] "GET /build/assets/Welcome-2fe63e9a.js HTTP/1.1" 200 4959 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:28:09 +0000] "GET /build/assets/server-42cf0e33.js HTTP/1.1" 200 167 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:28:09 +0000] "GET /build/assets/server-42cf0e33.js HTTP/1.1" 200 167 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:28:09 +0000] "GET /build/assets/app-f90d466c.js HTTP/1.1" 200 754287 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:28:09 +0000] "GET /build/assets/Welcome-2fe63e9a.js HTTP/1.1" 200 4959 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:29:13 +0000] "GET / HTTP/1.1" 200 12150 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:29:13 +0000] "GET /build/assets/app-d38f9efa.css HTTP/1.1" 200 666394 "http://imobiliaria.localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:29:13 +0000] "GET /build/assets/Welcome-665689a9.css HTTP/1.1" 200 811 "http://imobiliaria.localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:29:13 +0000] "GET /build/assets/app-f90d466c.js HTTP/1.1" 200 754287 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:29:13 +0000] "GET /build/assets/Welcome-2fe63e9a.js HTTP/1.1" 200 4959 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:29:13 +0000] "GET /build/assets/server-42cf0e33.js HTTP/1.1" 200 167 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:29:13 +0000] "GET /build/assets/app-f90d466c.js HTTP/1.1" 200 754287 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:29:13 +0000] "GET /build/assets/Welcome-2fe63e9a.js HTTP/1.1" 200 4959 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:15:29:13 +0000] "GET /build/assets/server-42cf0e33.js HTTP/1.1" 200 167 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:00:15 +0000] "GET /build/assets/app-d38f9efa.css HTTP/1.1" 304 0 "http://127.0.0.1/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:00:15 +0000] "GET /build/assets/Welcome-665689a9.css HTTP/1.1" 304 0 "http://127.0.0.1/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:00:15 +0000] "GET /build/assets/server-42cf0e33.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:00:15 +0000] "GET /build/assets/Welcome-2fe63e9a.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:00:15 +0000] "GET /build/assets/app-f90d466c.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:00:15 +0000] "GET /build/assets/server-42cf0e33.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:00:15 +0000] "GET /build/assets/Welcome-2fe63e9a.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:00:15 +0000] "GET /build/assets/app-f90d466c.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:33 +0000] "GET / HTTP/1.1" 200 12124 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:33 +0000] "GET /build/assets/app-d38f9efa.css HTTP/1.1" 200 666394 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:33 +0000] "GET /build/assets/Welcome-665689a9.css HTTP/1.1" 200 811 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:33 +0000] "GET /build/assets/app-f90d466c.js HTTP/1.1" 200 754287 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:33 +0000] "GET /build/assets/Welcome-2fe63e9a.js HTTP/1.1" 200 4959 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:33 +0000] "GET /build/assets/server-42cf0e33.js HTTP/1.1" 200 167 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:33 +0000] "GET /build/assets/Welcome-2fe63e9a.js HTTP/1.1" 200 4959 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:33 +0000] "GET /build/assets/server-42cf0e33.js HTTP/1.1" 200 167 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:33 +0000] "GET /build/assets/app-f90d466c.js HTTP/1.1" 200 754287 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:42 +0000] "POST /api/form/proposal HTTP/1.1" 200 200 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:42 +0000] "POST /formulario/termos HTTP/1.1" 200 8659 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:42 +0000] "GET /build/assets/Terms-b7f74ef8.js HTTP/1.1" 200 2769 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:42 +0000] "GET /build/assets/Header-39bb0a87.js HTTP/1.1" 200 1703 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:42 +0000] "GET /build/assets/_plugin-vue_export-helper-c27b6911.js HTTP/1.1" 200 91 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:42 +0000] "GET /build/assets/Header-39bb0a87.js HTTP/1.1" 200 1703 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:42 +0000] "GET /build/assets/Terms-b7f74ef8.js HTTP/1.1" 200 2769 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:42 +0000] "GET /build/assets/_plugin-vue_export-helper-c27b6911.js HTTP/1.1" 200 91 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:42 +0000] "GET /build/assets/terms_ea-0486122b.png HTTP/1.1" 200 500636 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:42 +0000] "GET /build/assets/fa-solid-900-9fc85f3a.woff2 HTTP/1.1" 200 156496 "http://localhost/build/assets/app-d38f9efa.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:44 +0000] "POST /formulario/check-terms HTTP/1.1" 200 200 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:44 +0000] "POST /formulario/proposta HTTP/1.1" 200 8666 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:44 +0000] "GET /build/assets/Proposal-1e4c9fa0.css HTTP/1.1" 200 7107 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:44 +0000] "GET /build/assets/Proposal-acf79029.js HTTP/1.1" 200 71824 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:44 +0000] "GET /build/assets/Proposal-acf79029.js HTTP/1.1" 200 71824 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:44 +0000] "GET /api/component/rental_datas/proposal/276/user/277/personal HTTP/1.1" 200 335 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:50 +0000] "PUT /api/rental-data/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:01:53 +0000] "PUT /api/rental-data/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:00 +0000] "PUT /api/rental-data/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:06 +0000] "PUT /api/rental-data/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:06 +0000] "GET /api/component/data_personals/proposal/0/user/277/personal HTTP/1.1" 200 253 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:06 +0000] "GET /api/address/277/277/address_personal HTTP/1.1" 500 12127 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:06 +0000] "GET /api/component/professionals/proposal/276/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:06 +0000] "GET /api/address/277/277/address_personal HTTP/1.1" 500 12127 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:18 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 192 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:19 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 135 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:21 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:28 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:32 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:33 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:42 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:46 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:02:52 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:01 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:05 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:07 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:12 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:13 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:14 +0000] "PUT /api/data-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:27 +0000] "PUT /api/professional/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:33 +0000] "PUT /api/professional/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:35 +0000] "PUT /api/professional/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:36 +0000] "PUT /api/professional/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:36 +0000] "PUT /api/professional/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:37 +0000] "PUT /api/professional/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:38 +0000] "PUT /api/professional/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:39 +0000] "PUT /api/professional/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:39 +0000] "PUT /api/professional/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:41 +0000] "PUT /api/professional/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:43 +0000] "PUT /api/professional/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:46 +0000] "PUT /api/professional/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:47 +0000] "PUT /api/professional/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:03:58 +0000] "POST /api/form/address HTTP/1.1" 200 32 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:23 +0000] "POST /api/form/phone HTTP/1.1" 200 32 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:28 +0000] "GET /api/component/real_states/proposal/276/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:28 +0000] "GET /api/component/banks/proposal/276/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:28 +0000] "GET /api/component/personals/proposal/276/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:28 +0000] "GET /api/component/commercials/proposal/276/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:28 +0000] "GET /api/component/vehicles/proposal/276/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:28 +0000] "GET /api/component/properties/proposal/276/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:36 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:42 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:46 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:49 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:54 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:54 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:55 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:56 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:04:58 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:01 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:01 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:03 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:04 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:06 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:07 +0000] "PUT /api/bank-personal/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:13 +0000] "PUT /api/real-state/update HTTP/1.1" 200 32 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:21 +0000] "PUT /api/real-state/update HTTP/1.1" 200 35 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:29 +0000] "PUT /api/real-state/update HTTP/1.1" 200 35 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:35 +0000] "PUT /api/real-state/update HTTP/1.1" 200 35 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:37 +0000] "PUT /api/real-state/update HTTP/1.1" 200 35 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:40 +0000] "PUT /api/real-state/update HTTP/1.1" 200 35 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:40 +0000] "PUT /api/real-state/update HTTP/1.1" 200 35 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:45 +0000] "PUT /api/real-state/update HTTP/1.1" 200 35 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:51 +0000] "GET /api/address/277/277/address_personal HTTP/1.1" 500 12127 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:05:58 +0000] "PUT /api/property/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:01 +0000] "PUT /api/property/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:10 +0000] "POST /api/form/address HTTP/1.1" 200 32 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:20 +0000] "PUT /api/vehicle/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:26 +0000] "PUT /api/vehicle/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:30 +0000] "PUT /api/vehicle/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:31 +0000] "PUT /api/vehicle/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:33 +0000] "PUT /api/vehicle/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:36 +0000] "PUT /api/vehicle/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:41 +0000] "PUT /api/vehicle/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:51 +0000] "POST /api/form/upload/proposal/276/personal HTTP/1.1" 200 54 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:51 +0000] "POST /api/form/upload/proposal/276/personal HTTP/1.1" 200 54 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:51 +0000] "POST /api/form/upload/proposal/276/personal HTTP/1.1" 200 54 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:51 +0000] "POST /api/form/upload/proposal/276/personal HTTP/1.1" 200 54 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:51 +0000] "POST /api/form/upload/proposal/276/personal HTTP/1.1" 200 54 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:55 +0000] "POST /formulario/finalizar HTTP/1.1" 302 502 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:55 +0000] "GET /finalizar/your.email+fakedata67375@gmail.com HTTP/1.1" 200 8571 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:55 +0000] "GET /build/assets/Finish-97cc52eb.js HTTP/1.1" 200 2810 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:55 +0000] "GET /build/assets/Finish-97cc52eb.js HTTP/1.1" 200 2810 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:57 +0000] "GET /admin HTTP/1.1" 200 20061 "http://localhost/finalizar/your.email+fakedata67375@gmail.com" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:57 +0000] "GET /build/assets/theme-4419fdef.css HTTP/1.1" 200 112856 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:57 +0000] "GET /js/filament/filament/echo.js?v=3.2.32.0 HTTP/1.1" 200 91080 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:57 +0000] "GET /js/filament/filament/app.js?v=3.2.32.0 HTTP/1.1" 200 7776 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:57 +0000] "GET /js/filament/filament/echo.js?v=3.2.32.0 HTTP/1.1" 200 91080 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:57 +0000] "GET /js/filament/filament/app.js?v=3.2.32.0 HTTP/1.1" 200 7776 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:57 +0000] "GET /livewire/livewire.js?id=a27c4ca2 HTTP/1.1" 200 325881 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:57 +0000] "GET /livewire/livewire.js?id=a27c4ca2 HTTP/1.1" 200 325881 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:57 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:57 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:57 +0000] "GET /js/filament/widgets/components/chart.js?v=3.2.32.0 HTTP/1.1" 200 267194 "http://localhost/js/filament/support/async-alpine.js?v=3.2.32.0" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:57 +0000] "GET /js/filament/widgets/components/chart.js?v=3.2.32.0 HTTP/1.1" 200 267194 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:06:57 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:02 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:07 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:12 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:17 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:22 +0000] "GET /admin/data-personals HTTP/1.1" 200 23617 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:22 +0000] "GET /js/filament/tables/components/table.js?v=3.2.32.0 HTTP/1.1" 200 2294 "http://localhost/js/filament/support/async-alpine.js?v=3.2.32.0" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:22 +0000] "GET /js/filament/tables/components/table.js?v=3.2.32.0 HTTP/1.1" 200 2294 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:24 +0000] "GET /admin/phones HTTP/1.1" 200 21420 "http://localhost/admin/data-personals" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:27 +0000] "GET /admin/data-personals HTTP/1.1" 200 23617 "http://localhost/admin/phones" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:29 +0000] "GET /admin/data-personals/276/edit HTTP/1.1" 200 19567 "http://localhost/admin/data-personals" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:34 +0000] "GET /admin/users HTTP/1.1" 200 22338 "http://localhost/admin/data-personals/276/edit" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:37 +0000] "GET /admin/users/277 HTTP/1.1" 200 15641 "http://localhost/admin/users" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:42 +0000] "POST /admin/logout HTTP/1.1" 302 370 "http://localhost/admin/users/277" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:42 +0000] "GET /admin/login HTTP/1.1" 200 8724 "http://localhost/admin/users/277" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:46 +0000] "GET / HTTP/1.1" 200 12123 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:46 +0000] "GET /build/assets/app-d38f9efa.css HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:46 +0000] "GET /build/assets/Welcome-665689a9.css HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:46 +0000] "GET /build/assets/app-f90d466c.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:46 +0000] "GET /build/assets/server-42cf0e33.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:07:46 +0000] "GET /build/assets/Welcome-2fe63e9a.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:08:57 +0000] "POST /api/form/proposal HTTP/1.1" 200 225 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:08:57 +0000] "POST /formulario/termos HTTP/1.1" 200 8501 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:08:57 +0000] "GET /build/assets/Header-39bb0a87.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:08:57 +0000] "GET /build/assets/_plugin-vue_export-helper-c27b6911.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:08:57 +0000] "GET /build/assets/Terms-b7f74ef8.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:08:57 +0000] "GET /build/assets/terms_ea-0486122b.png HTTP/1.1" 304 0 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:08:57 +0000] "GET /build/assets/fa-solid-900-9fc85f3a.woff2 HTTP/1.1" 304 0 "http://localhost/build/assets/app-d38f9efa.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:08:59 +0000] "POST /formulario/check-terms HTTP/1.1" 200 225 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:08:59 +0000] "POST /formulario/proposta HTTP/1.1" 200 8508 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:08:59 +0000] "GET /build/assets/Proposal-acf79029.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:08:59 +0000] "GET /build/assets/Proposal-1e4c9fa0.css HTTP/1.1" 304 0 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:08:59 +0000] "GET /api/component/rental_datas/proposal/277/user/277/personal HTTP/1.1" 200 335 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:17 +0000] "GET /formulario/proposta HTTP/1.1" 500 1145352 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:20 +0000] "GET /admin/login HTTP/1.1" 200 8727 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:22 +0000] "POST /livewire/update HTTP/1.1" 200 32584 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:28 +0000] "GET /api/component/professionals/proposal/277/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:28 +0000] "GET /api/address/277/277/address_personal HTTP/1.1" 500 12127 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:28 +0000] "GET /api/component/data_personals/proposal/0/user/277/personal HTTP/1.1" 200 360 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:28 +0000] "GET /api/address/277/277/address_personal HTTP/1.1" 500 12127 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:29 +0000] "GET /api/component/banks/proposal/277/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:29 +0000] "GET /api/component/commercials/proposal/277/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:29 +0000] "GET /api/component/real_states/proposal/277/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:29 +0000] "GET /api/component/personals/proposal/277/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:29 +0000] "GET /api/component/properties/proposal/277/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:29 +0000] "GET /api/component/vehicles/proposal/277/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:32 +0000] "POST /formulario/finalizar HTTP/1.1" 302 502 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:32 +0000] "GET /finalizar/your.email+fakedata67375@gmail.com HTTP/1.1" 200 8388 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:34 +0000] "GET /admin HTTP/1.1" 302 370 "http://localhost/finalizar/your.email+fakedata67375@gmail.com" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:34 +0000] "GET /admin/login HTTP/1.1" 200 8725 "http://localhost/finalizar/your.email+fakedata67375@gmail.com" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:37 +0000] "GET /finalizar/your.email+fakedata67375@gmail.com HTTP/1.1" 200 12130 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:41 +0000] "GET /api/component/rental_datas/proposal/277/user/277/personal HTTP/1.1" 200 369 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:09:44 +0000] "GET / HTTP/1.1" 200 12123 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:08 +0000] "POST /api/form/proposal HTTP/1.1" 200 225 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:08 +0000] "POST /formulario/termos HTTP/1.1" 200 8501 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:10 +0000] "POST /formulario/check-terms HTTP/1.1" 200 225 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:10 +0000] "POST /formulario/proposta HTTP/1.1" 200 8508 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:10 +0000] "GET /api/component/rental_datas/proposal/278/user/277/personal HTTP/1.1" 200 335 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:14 +0000] "PUT /api/rental-data/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:15 +0000] "PUT /api/rental-data/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:21 +0000] "PUT /api/rental-data/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:32 +0000] "PUT /api/guarantor/update HTTP/1.1" 200 54 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:36 +0000] "GET /api/component/data_personals/proposal/0/user/277/personal HTTP/1.1" 200 360 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:36 +0000] "GET /api/component/professionals/proposal/278/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:36 +0000] "GET /api/address/277/277/address_personal HTTP/1.1" 500 12127 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:36 +0000] "GET /api/address/277/277/address_personal HTTP/1.1" 500 12127 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:45 +0000] "POST /api/form/phone HTTP/1.1" 200 32 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:56 +0000] "GET /api/component/real_states/proposal/278/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:56 +0000] "GET /api/component/banks/proposal/278/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:56 +0000] "GET /api/component/commercials/proposal/278/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:56 +0000] "GET /api/component/personals/proposal/278/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:56 +0000] "GET /api/component/properties/proposal/278/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:10:56 +0000] "GET /api/component/vehicles/proposal/278/user/277/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:11:01 +0000] "PUT /api/vehicle/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:11:08 +0000] "PUT /api/vehicle/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:11:10 +0000] "PUT /api/vehicle/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:11:13 +0000] "PUT /api/vehicle/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:11:14 +0000] "PUT /api/vehicle/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:11:22 +0000] "PUT /api/vehicle/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:11:25 +0000] "PUT /api/vehicle/update HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:11:28 +0000] "POST /formulario/finalizar HTTP/1.1" 302 502 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:11:28 +0000] "GET /finalizar/your.email+fakedata67375@gmail.com HTTP/1.1" 200 8388 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:11:33 +0000] "GET /admin HTTP/1.1" 302 370 "http://localhost/finalizar/your.email+fakedata67375@gmail.com" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:11:33 +0000] "GET /admin/login HTTP/1.1" 200 8722 "http://localhost/finalizar/your.email+fakedata67375@gmail.com" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:12:01 +0000] "POST /livewire/update HTTP/1.1" 200 1202 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:12:01 +0000] "GET /admin HTTP/1.1" 200 20073 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:12:01 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:12:01 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:12:01 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:16:12:04 +0000] "GET /admin/rental-datas HTTP/1.1" 200 33407 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:20 +0000] "GET / HTTP/1.1" 200 12265 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:20 +0000] "GET /build/assets/app-d38f9efa.css HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:20 +0000] "GET /build/assets/Welcome-665689a9.css HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:20 +0000] "GET /build/assets/app-f90d466c.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:20 +0000] "GET / HTTP/1.1" 200 12265 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:20 +0000] "GET /css/filament/forms/forms.css?v=3.2.32.0 HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:20 +0000] "GET /css/filament/support/support.css?v=3.2.32.0 HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:20 +0000] "GET /build/assets/Welcome-2fe63e9a.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:20 +0000] "GET /js/filament/support/async-alpine.js?v=3.2.32.0 HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:20 +0000] "GET /build/assets/server-42cf0e33.js HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:20 +0000] "GET /js/filament/notifications/notifications.js?v=3.2.32.0 HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:20 +0000] "GET /js/filament/support/support.js?v=3.2.32.0 HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:27 +0000] "GET /admin/login HTTP/1.1" 302 346 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:27 +0000] "GET /admin HTTP/1.1" 200 20066 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:27 +0000] "GET /build/assets/theme-4419fdef.css HTTP/1.1" 304 0 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:27 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:27 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:27 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:30 +0000] "POST /admin/logout HTTP/1.1" 302 370 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:30 +0000] "GET /admin/login HTTP/1.1" 200 8726 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:32 +0000] "POST /livewire/update HTTP/1.1" 200 32591 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:36 +0000] "POST /livewire/update HTTP/1.1" 200 1191 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:37 +0000] "GET /admin HTTP/1.1" 200 20305 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:37 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:37 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:37 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:42 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:47 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:52 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:11:57 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:02 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:07 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:12 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:17 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:22 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:27 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:32 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:37 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:42 +0000] "POST /livewire/update HTTP/1.1" 200 35753 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:42 +0000] "GET /admin HTTP/1.1" 200 20316 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:43 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:43 +0000] "POST /livewire/update HTTP/1.1" 200 26293 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:43 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:48 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:53 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:55 +0000] "GET /admin HTTP/1.1" 200 20321 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:55 +0000] "POST /livewire/update HTTP/1.1" 200 5867 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:55 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:12:56 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:01 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:06 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:11 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:16 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:21 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:26 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:31 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:36 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:41 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:41 +0000] "GET /admin HTTP/1.1" 200 20316 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:41 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:41 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:42 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:47 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:52 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:13:57 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:14:02 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:14:07 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:14:12 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:14:16 +0000] "GET / HTTP/1.1" 200 12125 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:16 +0000] "GET /build/assets/app-d38f9efa.css HTTP/1.1" 200 666394 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:16 +0000] "GET /build/assets/Welcome-665689a9.css HTTP/1.1" 200 811 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:16 +0000] "GET /build/assets/app-f90d466c.js HTTP/1.1" 200 754287 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:16 +0000] "GET /build/assets/Welcome-2fe63e9a.js HTTP/1.1" 200 4959 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:16 +0000] "GET /build/assets/server-42cf0e33.js HTTP/1.1" 200 167 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:16 +0000] "GET /css/filament/forms/forms.css?v=3.2.32.0 HTTP/1.1" 200 86576 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:16 +0000] "GET /css/filament/support/support.css?v=3.2.32.0 HTTP/1.1" 200 3147 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:16 +0000] "GET /js/filament/notifications/notifications.js?v=3.2.32.0 HTTP/1.1" 200 6921 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:16 +0000] "GET /js/filament/support/async-alpine.js?v=3.2.32.0 HTTP/1.1" 200 5266 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:16 +0000] "GET /js/filament/support/support.js?v=3.2.32.0 HTTP/1.1" 200 129791 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:17 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:14:20 +0000] "GET /admin HTTP/1.1" 302 370 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:20 +0000] "GET /admin/login HTTP/1.1" 200 8726 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:20 +0000] "GET /build/assets/theme-4419fdef.css HTTP/1.1" 200 112856 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:21 +0000] "GET /js/filament/filament/app.js?v=3.2.32.0 HTTP/1.1" 200 7776 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:21 +0000] "GET /js/filament/filament/echo.js?v=3.2.32.0 HTTP/1.1" 200 91080 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:21 +0000] "GET /livewire/livewire.js?id=a27c4ca2 HTTP/1.1" 200 325881 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:22 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:14:27 +0000] "POST /livewire/update HTTP/1.1" 200 1181 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:27 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:14:27 +0000] "GET /admin HTTP/1.1" 200 20312 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:27 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:27 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:27 +0000] "GET /js/filament/widgets/components/chart.js?v=3.2.32.0 HTTP/1.1" 200 267194 "http://localhost/js/filament/support/async-alpine.js?v=3.2.32.0" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:27 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:32 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:14:32 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:37 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:14:37 +0000] "POST /admin/logout HTTP/1.1" 302 370 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:37 +0000] "POST /livewire/update HTTP/1.1" 419 6622 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:37 +0000] "GET /admin/login HTTP/1.1" 200 8731 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:42 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:14:47 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:14:52 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:14:53 +0000] "POST /livewire/update HTTP/1.1" 200 1202 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:53 +0000] "GET /admin HTTP/1.1" 200 20063 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:53 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:54 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:54 +0000] "POST /livewire/update HTTP/1.1" 500 1206434 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:57 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:14:58 +0000] "GET /admin HTTP/1.1" 200 20067 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:58 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:58 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:14:58 +0000] "POST /livewire/update HTTP/1.1" 500 1206434 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:02 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:15:03 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:07 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:15:09 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:12 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:15:14 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:17 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:15:19 +0000] "POST /livewire/update HTTP/1.1" 200 9517 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:20 +0000] "GET /admin HTTP/1.1" 200 20055 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:20 +0000] "POST /livewire/update HTTP/1.1" 200 803 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:20 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:20 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:22 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:15:25 +0000] "POST /livewire/update HTTP/1.1" 200 10256 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:27 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:15:30 +0000] "GET /admin HTTP/1.1" 200 20308 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:15:30 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:15:30 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:15:30 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:15:30 +0000] "POST /livewire/update HTTP/1.1" 200 10256 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:35 +0000] "POST /livewire/update HTTP/1.1" 200 10256 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:35 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:15:40 +0000] "POST /livewire/update HTTP/1.1" 200 10256 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:40 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:15:45 +0000] "POST /livewire/update HTTP/1.1" 200 10256 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:45 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:15:50 +0000] "POST /livewire/update HTTP/1.1" 200 10256 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:50 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:15:55 +0000] "POST /livewire/update HTTP/1.1" 200 10256 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:15:55 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:16:00 +0000] "POST /livewire/update HTTP/1.1" 500 1195485 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:00 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:16:05 +0000] "POST /livewire/update HTTP/1.1" 500 1195475 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:05 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:16:10 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:16:11 +0000] "POST /livewire/update HTTP/1.1" 500 1195479 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:15 +0000] "GET /admin HTTP/1.1" 200 20073 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:15 +0000] "POST /livewire/update HTTP/1.1" 200 3989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:15 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:15 +0000] "POST /livewire/update HTTP/1.1" 200 803 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:15 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:16:20 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:20 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:16:25 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:25 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:16:30 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:30 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:16:35 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:35 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:16:40 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:40 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:16:45 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:45 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:16:50 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:50 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:16:55 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:16:55 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:17:00 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:00 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:17:05 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:05 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:17:10 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:10 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:17:15 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:17:15 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:20 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:17:21 +0000] "POST /livewire/update HTTP/1.1" 500 1203652 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:25 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:17:26 +0000] "POST /livewire/update HTTP/1.1" 500 1203670 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:30 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:17:31 +0000] "POST /livewire/update HTTP/1.1" 500 1118338 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:35 +0000] "GET /admin HTTP/1.1" 200 20064 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:35 +0000] "POST /livewire/update HTTP/1.1" 200 803 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:35 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:35 +0000] "POST /livewire/update HTTP/1.1" 500 1201942 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:35 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:17:40 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:17:41 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:45 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:17:46 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:48 +0000] "GET /admin HTTP/1.1" 200 20078 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:48 +0000] "POST /livewire/update HTTP/1.1" 200 3981 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:48 +0000] "POST /livewire/update HTTP/1.1" 200 803 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:48 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:50 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:17:53 +0000] "POST /livewire/update HTTP/1.1" 200 9910 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:17:55 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:17:58 +0000] "POST /livewire/update HTTP/1.1" 200 9910 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:00 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:18:03 +0000] "POST /livewire/update HTTP/1.1" 200 9910 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:05 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:18:08 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:10 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:18:13 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:15 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:18:18 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:20 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:18:23 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:25 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:18:28 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:30 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:18:33 +0000] "POST /livewire/update HTTP/1.1" 200 9918 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:35 +0000] "POST /livewire/update HTTP/1.1" 500 1190356 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:18:38 +0000] "POST /livewire/update HTTP/1.1" 500 1188164 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:40 +0000] "POST /livewire/update HTTP/1.1" 500 1190381 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:18:44 +0000] "POST /livewire/update HTTP/1.1" 500 1188162 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:45 +0000] "POST /livewire/update HTTP/1.1" 500 1190381 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:18:49 +0000] "POST /livewire/update HTTP/1.1" 500 1188164 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:50 +0000] "POST /livewire/update HTTP/1.1" 500 1192257 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:18:54 +0000] "GET /admin HTTP/1.1" 200 20060 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:54 +0000] "POST /livewire/update HTTP/1.1" 200 803 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:54 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:54 +0000] "POST /livewire/update HTTP/1.1" 500 1229655 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:18:55 +0000] "POST /livewire/update HTTP/1.1" 500 1192241 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:18:59 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:19:00 +0000] "POST /livewire/update HTTP/1.1" 500 1192239 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:19:04 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:19:05 +0000] "POST /livewire/update HTTP/1.1" 500 1192241 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:19:10 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:19:10 +0000] "POST /livewire/update HTTP/1.1" 500 1192249 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:19:15 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:19:15 +0000] "POST /livewire/update HTTP/1.1" 500 1192264 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:19:20 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:19:20 +0000] "POST /livewire/update HTTP/1.1" 500 1192241 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:19:25 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:19:25 +0000] "POST /livewire/update HTTP/1.1" 500 1192241 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:19:30 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:19:30 +0000] "POST /livewire/update HTTP/1.1" 500 1192264 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:19:35 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:19:35 +0000] "POST /livewire/update HTTP/1.1" 500 1192241 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:19:40 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:19:40 +0000] "POST /livewire/update HTTP/1.1" 500 1192239 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:19:45 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:19:45 +0000] "POST /livewire/update HTTP/1.1" 200 9626 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:19:50 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:19:50 +0000] "POST /livewire/update HTTP/1.1" 200 9625 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:19:55 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:19:55 +0000] "POST /livewire/update HTTP/1.1" 200 9625 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:00 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:20:00 +0000] "POST /livewire/update HTTP/1.1" 200 9625 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:05 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:20:05 +0000] "POST /livewire/update HTTP/1.1" 200 9625 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:10 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:20:10 +0000] "POST /livewire/update HTTP/1.1" 200 9634 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:13 +0000] "GET /admin HTTP/1.1" 200 20312 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:13 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:13 +0000] "POST /livewire/update HTTP/1.1" 200 7252 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:13 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:15 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:20:19 +0000] "POST /livewire/update HTTP/1.1" 200 9691 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:20 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:20:24 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:25 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:20:29 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:30 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:20:34 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:35 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:20:39 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:40 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:20:44 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:45 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:20:49 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:50 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:20:54 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:20:55 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:20:59 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:00 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:21:01 +0000] "GET /admin HTTP/1.1" 200 20321 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:01 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:01 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:01 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:05 +0000] "POST /livewire/update HTTP/1.1" 200 5989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:21:06 +0000] "GET /admin HTTP/1.1" 200 20045 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:21:06 +0000] "POST /livewire/update HTTP/1.1" 200 3989 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:21:06 +0000] "POST /livewire/update HTTP/1.1" 200 803 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:21:06 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:21:06 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:11 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:16 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:21 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:26 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:31 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:36 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:41 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:46 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:51 +0000] "GET /admin HTTP/1.1" 200 15094 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:51 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:51 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:51 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:21:56 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:01 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:06 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:07 +0000] "POST /livewire/update HTTP/1.1" 200 3969 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -172.30.0.1 - - [13/Feb/2024:17:22:11 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:16 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:21 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:26 +0000] "GET /admin HTTP/1.1" 200 20303 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:26 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:26 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:26 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:31 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:36 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:41 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:46 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:51 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:22:56 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:23:01 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:23:06 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:23:11 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:23:16 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:23:21 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:23:26 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:23:31 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:23:36 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:23:41 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:23:46 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:23:51 +0000] "POST /livewire/update HTTP/1.1" 500 1344649 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.30.0.1 - - [13/Feb/2024:17:28:29 +0000] "POST /livewire/update HTTP/1.1" 200 14661 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.0.1 - - [13/Feb/2024:17:38:47 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.0.1 - - [13/Feb/2024:17:38:51 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.0.1 - - [13/Feb/2024:17:38:54 +0000] "GET /admin HTTP/1.1" 500 1606827 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:47:12 +0000] "GET /admin HTTP/1.1" 500 1606850 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:48:54 +0000] "GET /admin HTTP/1.1" 200 20327 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:48:54 +0000] "GET /build/assets/theme-4419fdef.css HTTP/1.1" 304 0 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:48:54 +0000] "GET /js/filament/notifications/notifications.js?v=3.2.32.0 HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:48:54 +0000] "GET /js/filament/support/async-alpine.js?v=3.2.32.0 HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:48:54 +0000] "GET /js/filament/filament/echo.js?v=3.2.32.0 HTTP/1.1" 304 0 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:48:54 +0000] "GET /js/filament/filament/app.js?v=3.2.32.0 HTTP/1.1" 304 0 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:48:54 +0000] "GET /js/filament/support/support.js?v=3.2.32.0 HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:48:54 +0000] "GET /js/filament/filament/echo.js?v=3.2.32.0 HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:48:54 +0000] "GET /js/filament/filament/app.js?v=3.2.32.0 HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:48:55 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:48:55 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:48:55 +0000] "GET /js/filament/widgets/components/chart.js?v=3.2.32.0 HTTP/1.1" 304 0 "http://localhost/js/filament/support/async-alpine.js?v=3.2.32.0" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:48:55 +0000] "GET /js/filament/widgets/components/chart.js?v=3.2.32.0 HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:48:55 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:49:00 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:49:05 +0000] "POST /livewire/update HTTP/1.1" 500 1276631 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.80.1 - - [13/Feb/2024:17:49:10 +0000] "POST /livewire/update HTTP/1.1" 500 1331727 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:49:53 +0000] "POST /admin/logout HTTP/1.1" 302 370 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:49:53 +0000] "GET /admin/login HTTP/1.1" 200 8729 "http://localhost/admin" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:49:53 +0000] "GET /build/assets/theme-4419fdef.css HTTP/1.1" 304 0 "http://localhost/admin/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:49:57 +0000] "GET / HTTP/1.1" 200 12125 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:49:57 +0000] "GET /build/assets/app-d38f9efa.css HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:49:57 +0000] "GET /build/assets/Welcome-665689a9.css HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:49:57 +0000] "GET /build/assets/app-f90d466c.js HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:49:57 +0000] "GET /build/assets/server-42cf0e33.js HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:49:57 +0000] "GET /build/assets/Welcome-2fe63e9a.js HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:10 +0000] "POST /api/form/proposal HTTP/1.1" 200 203 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:10 +0000] "POST /formulario/termos HTTP/1.1" 200 8665 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:10 +0000] "GET /build/assets/Terms-b7f74ef8.js HTTP/1.1" 200 2769 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:10 +0000] "GET /build/assets/Header-39bb0a87.js HTTP/1.1" 200 1703 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:10 +0000] "GET /build/assets/_plugin-vue_export-helper-c27b6911.js HTTP/1.1" 200 91 "http://localhost/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:10 +0000] "GET /build/assets/terms_ea-0486122b.png HTTP/1.1" 200 500636 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:10 +0000] "GET /build/assets/fa-solid-900-9fc85f3a.woff2 HTTP/1.1" 200 156496 "http://localhost/build/assets/app-d38f9efa.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:11 +0000] "POST /formulario/check-terms HTTP/1.1" 200 203 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:11 +0000] "POST /formulario/proposta HTTP/1.1" 200 8672 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:11 +0000] "GET /build/assets/Proposal-acf79029.js HTTP/1.1" 200 71824 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:11 +0000] "GET /build/assets/Proposal-1e4c9fa0.css HTTP/1.1" 200 7107 "http://localhost/formulario/termos" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:12 +0000] "GET /api/component/rental_datas/proposal/279/user/278/personal HTTP/1.1" 200 335 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:14 +0000] "GET /api/address/278/278/address_personal HTTP/1.1" 500 11676 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:14 +0000] "GET /api/component/data_personals/proposal/0/user/278/personal HTTP/1.1" 200 253 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:14 +0000] "GET /api/address/278/278/address_personal HTTP/1.1" 500 11676 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:14 +0000] "GET /api/component/professionals/proposal/279/user/278/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:16 +0000] "GET /api/component/commercials/proposal/279/user/278/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:16 +0000] "GET /api/component/real_states/proposal/279/user/278/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:16 +0000] "GET /api/component/banks/proposal/279/user/278/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:16 +0000] "GET /api/component/personals/proposal/279/user/278/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:16 +0000] "GET /api/component/properties/proposal/279/user/278/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:50:16 +0000] "GET /api/component/vehicles/proposal/279/user/278/personal HTTP/1.1" 200 31 "http://localhost/formulario/proposta" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:122.0) Gecko/20100101 Firefox/122.0" -192.168.96.1 - - [13/Feb/2024:17:52:38 +0000] "GET /admin HTTP/1.1" 200 20304 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:52:39 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:52:39 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:52:39 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:52:39 +0000] "GET /admin HTTP/1.1" 200 20327 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:52:40 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:52:40 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:52:40 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:52:42 +0000] "POST /admin/logout HTTP/1.1" 302 370 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:52:42 +0000] "GET /admin/login HTTP/1.1" 200 8729 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:52:50 +0000] "GET /admin/login HTTP/1.1" 200 8730 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:53:12 +0000] "POST /livewire/update HTTP/1.1" 200 1191 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:53:12 +0000] "GET /admin HTTP/1.1" 200 20312 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:53:12 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:53:12 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:53:13 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:53:18 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:53:23 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:53:28 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:54:09 +0000] "POST /livewire/update HTTP/1.1" 200 9452 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:17:59:29 +0000] "POST /livewire/update HTTP/1.1" 200 4308 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:02:41 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:02:42 +0000] "GET /admin HTTP/1.1" 200 20311 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:02:42 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:02:42 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:02:42 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:02:47 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:02:52 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:02:57 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:03:02 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:03:07 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:03:14 +0000] "POST /livewire/update HTTP/1.1" 200 14661 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:03:42 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:03:44 +0000] "GET /admin HTTP/1.1" 200 20302 "http://localhost/admin/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:03:44 +0000] "POST /livewire/update HTTP/1.1" 200 9476 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:03:44 +0000] "POST /livewire/update HTTP/1.1" 200 4328 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:03:44 +0000] "POST /livewire/update HTTP/1.1" 200 5270 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:03:49 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:03:54 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:03:59 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:04:04 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:04:09 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:04:14 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:04:19 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:04:24 +0000] "POST /livewire/update HTTP/1.1" 200 18928 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:04:29 +0000] "POST /livewire/update HTTP/1.1" 500 1331727 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -192.168.96.1 - - [13/Feb/2024:18:04:34 +0000] "POST /livewire/update HTTP/1.1" 500 1331727 "http://localhost/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" -172.18.0.1 - - [23/Feb/2024:01:05:33 +0000] "GET / HTTP/1.1" 200 12193 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [23/Feb/2024:01:05:34 +0000] "GET / HTTP/1.1" 200 12193 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [23/Feb/2024:01:05:34 +0000] "GET /css/filament/forms/forms.css?v=3.2.35.0 HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [23/Feb/2024:01:05:34 +0000] "GET /css/filament/support/support.css?v=3.2.35.0 HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [23/Feb/2024:01:05:34 +0000] "GET /js/filament/notifications/notifications.js?v=3.2.35.0 HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [23/Feb/2024:01:05:34 +0000] "GET /js/filament/support/async-alpine.js?v=3.2.35.0 HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [23/Feb/2024:01:05:34 +0000] "GET /js/filament/support/support.js?v=3.2.35.0 HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [23/Feb/2024:01:05:34 +0000] "GET /js/filament/notifications/notifications.js?v=3.2.35.0 HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [23/Feb/2024:01:05:34 +0000] "GET /js/filament/support/async-alpine.js?v=3.2.35.0 HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [23/Feb/2024:01:05:34 +0000] "GET /js/filament/support/support.js?v=3.2.35.0 HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [23/Feb/2024:01:06:18 +0000] "POST /api/form/proposal HTTP/1.1" 200 226 "http://localhost/" "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1" -172.18.0.1 - - [23/Feb/2024:01:06:19 +0000] "POST /formulario/termos HTTP/1.1" 200 8934 "http://localhost/" "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1" -172.18.0.1 - - [23/Feb/2024:01:33:42 +0000] "GET /formulario/termos HTTP/1.1" 200 31 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1" -172.18.0.1 - - [23/Feb/2024:01:33:49 +0000] "GET / HTTP/1.1" 200 12314 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1" -172.18.0.1 - - [23/Feb/2024:01:34:03 +0000] "POST /api/form/proposal HTTP/1.1" 200 226 "http://localhost/" "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1" -172.18.0.1 - - [23/Feb/2024:01:34:03 +0000] "POST /formulario/termos HTTP/1.1" 200 8934 "http://localhost/" "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1" -172.18.0.1 - - [23/Feb/2024:01:42:09 +0000] "GET / HTTP/1.1" 200 12313 "-" "Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Mobile Safari/537.36" -192.168.80.1 - - [10/Mar/2024:23:11:52 +0000] "GET / HTTP/1.1" 500 5 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:01:04:22 +0000] "GET / HTTP/1.1" 502 552 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:01:05:23 +0000] "GET / HTTP/1.1" 502 552 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:01:05:24 +0000] "GET / HTTP/1.1" 502 552 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:01:05:39 +0000] "GET / HTTP/1.1" 502 552 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:01:40:23 +0000] "GET / HTTP/1.1" 502 552 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:01:40:25 +0000] "GET / HTTP/1.1" 502 552 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:01:40:26 +0000] "GET / HTTP/1.1" 502 552 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:01:40:39 +0000] "GET / HTTP/1.1" 502 552 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:01:51:19 +0000] "GET / HTTP/1.1" 500 1271722 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:01:52:07 +0000] "GET / HTTP/1.1" 500 1271255 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:01:53:18 +0000] "GET / HTTP/1.1" 500 1088614 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:01:53:36 +0000] "GET / HTTP/1.1" 500 1126535 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:01:53:36 +0000] "GET /_ignition/health-check HTTP/1.1" 200 40 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:01:59:53 +0000] "GET / HTTP/1.1" 200 31 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:02:00:05 +0000] "POST /api/send/draft HTTP/1.1" 302 346 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:00:05 +0000] "GET /login HTTP/1.1" 405 1040340 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:01:25 +0000] "POST /api/login-api HTTP/1.1" 405 1040841 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:01:33 +0000] "GET /api/login-api HTTP/1.1" 200 19 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:01:49 +0000] "POST /api/send/draft HTTP/1.1" 200 17290 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:22:42 +0000] "POST /api/send HTTP/1.1" 405 1040518 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:22:51 +0000] "GET /api/send HTTP/1.1" 500 1113778 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:29:25 +0000] "GET /api/send HTTP/1.1" 500 1107221 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:31:24 +0000] "GET /api/send HTTP/1.1" 500 1107275 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:31:46 +0000] "GET /api/send HTTP/1.1" 500 1107247 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:34:45 +0000] "GET /api/send HTTP/1.1" 500 1107260 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:35:05 +0000] "GET /api/send HTTP/1.1" 500 1107339 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:40:19 +0000] "GET /api/send HTTP/1.1" 500 1107243 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:40:56 +0000] "GET /api/send HTTP/1.1" 500 1106777 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:41:31 +0000] "GET /api/send HTTP/1.1" 500 1106771 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:42:56 +0000] "GET /api/send HTTP/1.1" 500 1107203 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:44:46 +0000] "GET /api/send HTTP/1.1" 500 1106684 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:45:05 +0000] "GET /api/send HTTP/1.1" 500 1106931 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:47:06 +0000] "GET /api/send HTTP/1.1" 500 1107276 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:56:11 +0000] "GET /api/send HTTP/1.1" 500 1107288 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:56:21 +0000] "GET /api/send HTTP/1.1" 500 1107355 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:56:59 +0000] "GET /api/send HTTP/1.1" 500 1106970 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:02:57:12 +0000] "GET /api/send HTTP/1.1" 500 1106901 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:00:58 +0000] "GET /api/send HTTP/1.1" 500 1107282 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:09:36 +0000] "GET /api/send HTTP/1.1" 500 1107257 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:09:51 +0000] "GET /api/send HTTP/1.1" 500 1107304 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:13:17 +0000] "GET / HTTP/1.1" 200 31 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" -172.18.0.1 - - [20/Mar/2024:03:13:24 +0000] "GET /api/send HTTP/1.1" 500 1107262 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:13:38 +0000] "GET /api/send HTTP/1.1" 500 1107303 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:15:56 +0000] "GET /api/send HTTP/1.1" 500 1086224 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:16:25 +0000] "GET /api/send HTTP/1.1" 200 58278 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:27:02 +0000] "GET /api/send HTTP/1.1" 500 1087496 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:27:28 +0000] "GET /api/send HTTP/1.1" 500 1105955 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:30:17 +0000] "GET /api/send HTTP/1.1" 500 1105988 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:31:20 +0000] "GET /api/send HTTP/1.1" 200 5 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:32:58 +0000] "GET /api/send HTTP/1.1" 200 5 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:32:59 +0000] "GET /api/send HTTP/1.1" 200 5 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:32:59 +0000] "GET /api/send HTTP/1.1" 200 5 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:33:00 +0000] "GET /api/send HTTP/1.1" 200 5 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:33:00 +0000] "GET /api/send HTTP/1.1" 200 5 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:33:01 +0000] "GET /api/send HTTP/1.1" 200 5 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:33:02 +0000] "GET /api/send HTTP/1.1" 200 5 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:35:39 +0000] "GET /api/send HTTP/1.1" 200 5 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:35:40 +0000] "GET /api/send HTTP/1.1" 200 5 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:35:41 +0000] "GET /api/send HTTP/1.1" 200 5 "-" "insomnia/2023.5.8" -172.18.0.1 - - [20/Mar/2024:03:35:42 +0000] "GET /api/send HTTP/1.1" 200 5 "-" "insomnia/2023.5.8" -10.11.0.1 - - [22/Oct/2024:13:49:53 +0000] "GET / HTTP/1.1" 200 32 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:13:50:39 +0000] "GET / HTTP/1.1" 200 32 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:13:50:50 +0000] "GET / HTTP/1.1" 500 17352 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:13:51:06 +0000] "GET / HTTP/1.1" 500 1155277 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:15:17:16 +0000] "GET / HTTP/1.1" 500 1155321 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:15:17:26 +0000] "GET / HTTP/1.1" 200 32 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:16:54:28 +0000] "GET /welcome HTTP/1.1" 500 1172508 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:06:45 +0000] "GET /welcome HTTP/1.1" 500 1171851 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:07:11 +0000] "GET /welcome HTTP/1.1" 500 1173431 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:07:30 +0000] "GET /welcome HTTP/1.1" 500 1173480 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:07:40 +0000] "GET /welcome HTTP/1.1" 200 632 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:07:40 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 404 2311 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:09:06 +0000] "GET /welcome HTTP/1.1" 200 635 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:09:07 +0000] "GET /assets/img/email/header_email_mapa.png HTTP/1.1" 404 2311 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:09:31 +0000] "GET /welcome HTTP/1.1" 200 635 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:09:31 +0000] "GET /assets/img/email/header_email_mapa.png HTTP/1.1" 404 2311 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:09:41 +0000] "GET /welcome HTTP/1.1" 200 632 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:09:41 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 404 2311 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:09:46 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 404 2311 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:11:28 +0000] "GET /welcome HTTP/1.1" 500 1173500 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:12:17 +0000] "GET /welcome HTTP/1.1" 200 632 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:12:17 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 404 2311 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:13:13 +0000] "GET /welcome HTTP/1.1" 200 632 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:13:13 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 200 28564 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:13:37 +0000] "GET /welcome HTTP/1.1" 200 630 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:14:22 +0000] "GET /welcome HTTP/1.1" 200 759 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:14:32 +0000] "GET /welcome HTTP/1.1" 200 764 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:14:33 +0000] "GET /welcome HTTP/1.1" 200 764 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:14:41 +0000] "GET /welcome HTTP/1.1" 200 766 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:15:20 +0000] "GET /welcome HTTP/1.1" 200 773 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:15:20 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 304 0 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:16:01 +0000] "GET /welcome HTTP/1.1" 200 850 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:16:21 +0000] "GET /welcome HTTP/1.1" 200 843 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:16:34 +0000] "GET /welcome HTTP/1.1" 200 859 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:17:46 +0000] "GET /welcome HTTP/1.1" 200 863 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:17:46 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 304 0 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:17:54 +0000] "GET /welcome HTTP/1.1" 200 859 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:19:36 +0000] "GET /welcome HTTP/1.1" 200 855 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:19:36 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 200 28564 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:20:58 +0000] "GET /welcome HTTP/1.1" 200 855 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:21:13 +0000] "GET /welcome HTTP/1.1" 200 843 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:22:16 +0000] "GET /welcome HTTP/1.1" 200 863 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:22:16 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 304 0 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:23:10 +0000] "GET /welcome HTTP/1.1" 200 875 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:23:32 +0000] "GET /welcome HTTP/1.1" 200 874 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:23:53 +0000] "GET /welcome HTTP/1.1" 200 865 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:24:01 +0000] "GET /welcome HTTP/1.1" 200 878 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:24:18 +0000] "GET /welcome HTTP/1.1" 200 866 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:25:40 +0000] "GET /welcome HTTP/1.1" 200 902 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:25:40 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 304 0 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:26:19 +0000] "GET /welcome HTTP/1.1" 200 902 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:26:38 +0000] "GET /welcome HTTP/1.1" 200 895 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:26:52 +0000] "GET /welcome HTTP/1.1" 200 908 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:28:15 +0000] "GET /welcome HTTP/1.1" 200 939 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:28:27 +0000] "GET /welcome HTTP/1.1" 200 939 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:29:24 +0000] "GET /welcome HTTP/1.1" 200 943 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:29:24 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 304 0 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:29:36 +0000] "GET /welcome HTTP/1.1" 200 942 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:29:47 +0000] "GET /welcome HTTP/1.1" 200 946 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:29:53 +0000] "GET /welcome HTTP/1.1" 200 946 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:30:03 +0000] "GET /welcome HTTP/1.1" 200 949 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:33:38 +0000] "GET /welcome HTTP/1.1" 200 1258 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:33:38 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 304 0 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:34:03 +0000] "GET /welcome HTTP/1.1" 200 1378 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:34:33 +0000] "GET /welcome HTTP/1.1" 200 1398 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:34:33 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 200 28564 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:34:42 +0000] "GET /welcome HTTP/1.1" 200 1395 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:35:00 +0000] "GET /welcome HTTP/1.1" 200 1386 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:36:20 +0000] "GET /welcome HTTP/1.1" 200 1386 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:36:20 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 200 28564 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:37:13 +0000] "GET /welcome HTTP/1.1" 200 1392 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:37:13 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 200 28564 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:37:39 +0000] "GET /welcome HTTP/1.1" 200 1362 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:38:04 +0000] "GET /welcome HTTP/1.1" 200 1456 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:38:23 +0000] "GET /welcome HTTP/1.1" 200 1456 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:38:52 +0000] "GET /welcome HTTP/1.1" 200 1458 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:39:13 +0000] "GET /welcome HTTP/1.1" 200 1355 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:39:28 +0000] "GET /welcome HTTP/1.1" 200 1359 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:44:43 +0000] "GET /welcome HTTP/1.1" 200 1351 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:44:43 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 304 0 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:45:40 +0000] "GET /welcome HTTP/1.1" 200 1363 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:45:48 +0000] "GET /welcome HTTP/1.1" 200 1364 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:45:49 +0000] "GET /welcome HTTP/1.1" 200 1364 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:46:01 +0000] "GET /welcome HTTP/1.1" 200 1361 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:46:02 +0000] "GET /welcome HTTP/1.1" 200 1361 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:46:03 +0000] "GET /welcome HTTP/1.1" 200 1361 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:46:22 +0000] "GET /welcome HTTP/1.1" 200 1352 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:46:53 +0000] "GET /welcome HTTP/1.1" 200 1355 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:47:41 +0000] "GET /welcome HTTP/1.1" 200 1352 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:48:22 +0000] "GET /welcome HTTP/1.1" 200 1324 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:51:00 +0000] "GET /welcome HTTP/1.1" 200 1325 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:51:00 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 304 0 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:51:02 +0000] "GET /welcome HTTP/1.1" 200 1325 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:51:09 +0000] "GET /welcome HTTP/1.1" 200 1308 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:51:11 +0000] "GET /welcome HTTP/1.1" 200 1308 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:51:12 +0000] "GET /welcome HTTP/1.1" 200 1308 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:51:22 +0000] "GET /welcome HTTP/1.1" 200 1306 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:51:30 +0000] "GET /welcome HTTP/1.1" 200 1326 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:54:08 +0000] "GET /welcome HTTP/1.1" 200 1417 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:54:19 +0000] "GET /welcome HTTP/1.1" 200 1329 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:54:36 +0000] "GET /welcome HTTP/1.1" 200 1384 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:55:00 +0000] "GET /welcome HTTP/1.1" 200 1376 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:55:18 +0000] "GET /welcome HTTP/1.1" 200 1374 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:55:28 +0000] "GET /welcome HTTP/1.1" 200 1379 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:55:34 +0000] "GET /welcome HTTP/1.1" 200 1378 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:55:40 +0000] "GET /welcome HTTP/1.1" 200 1377 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:56:33 +0000] "GET /welcome HTTP/1.1" 200 1616 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:17:56:33 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 304 0 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:18:08:39 +0000] "GET /welcome HTTP/1.1" 200 1891 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:18:08:39 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 304 0 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:19:28:30 +0000] "GET /welcome HTTP/1.1" 200 1891 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [22/Oct/2024:19:28:30 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 304 0 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:12:47:55 +0000] "GET /welcome HTTP/1.1" 200 1891 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:12:47:55 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 200 28564 "http://localhost/welcome" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:12:49:31 +0000] "GET /welcome HTTP/1.1" 200 1912 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:12:52:40 +0000] "GET /welcome HTTP/1.1" 200 1895 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:12:52:43 +0000] "GET /welcome HTTP/1.1" 200 1895 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:12:53:32 +0000] "GET /welcome HTTP/1.1" 200 1909 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:14:50:30 +0000] "GET /img/email/header_email_mapa.png HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:17:35:06 +0000] "GET /test HTTP/1.1" 500 1122183 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:17:35:15 +0000] "GET /test HTTP/1.1" 500 1121949 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:17:37:17 +0000] "GET /test HTTP/1.1" 500 1121829 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:17:37:33 +0000] "GET /test HTTP/1.1" 500 1121845 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:18:25:50 +0000] "GET /test HTTP/1.1" 500 1122024 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:18:26:53 +0000] "GET /test HTTP/1.1" 500 1122312 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:18:29:58 +0000] "GET /test HTTP/1.1" 500 1122593 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:18:32:54 +0000] "GET /test HTTP/1.1" 500 1122514 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:08:56 +0000] "GET /test HTTP/1.1" 500 16583 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:09:34 +0000] "GET /test HTTP/1.1" 500 1122179 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:11:22 +0000] "GET /test HTTP/1.1" 500 1122191 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:11:39 +0000] "GET /test HTTP/1.1" 500 16583 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:12:29 +0000] "GET /test HTTP/1.1" 500 1122257 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:16:41 +0000] "GET /test HTTP/1.1" 500 1122265 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:16:53 +0000] "GET /test HTTP/1.1" 500 16581 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:17:11 +0000] "GET /test HTTP/1.1" 500 16579 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:17:15 +0000] "GET /test HTTP/1.1" 500 16581 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:27:58 +0000] "GET /test HTTP/1.1" 500 1122193 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:28:10 +0000] "GET /test HTTP/1.1" 500 1122106 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:29:45 +0000] "GET /test HTTP/1.1" 500 16581 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:38:36 +0000] "GET /test HTTP/1.1" 500 1122184 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:38:56 +0000] "GET /test HTTP/1.1" 500 16583 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:40:42 +0000] "GET /test HTTP/1.1" 500 16583 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:41:19 +0000] "GET /test HTTP/1.1" 500 16581 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:41:20 +0000] "GET /test HTTP/1.1" 500 16581 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.11.0.1 - - [23/Oct/2024:19:42:30 +0000] "GET /test HTTP/1.1" 500 1122359 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" -10.2.0.1 - - [13/Mar/2025:18:07:17 +0000] "GET / HTTP/1.1" 200 32 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:136.0) Gecko/20100101 Firefox/136.0" -10.2.0.1 - - [13/Mar/2025:18:07:18 +0000] "GET / HTTP/1.1" 200 32 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:136.0) Gecko/20100101 Firefox/136.0" diff --git a/docker/logs/nginx/laravel_error.log b/docker/logs/nginx/laravel_error.log deleted file mode 100644 index cddc64f..0000000 --- a/docker/logs/nginx/laravel_error.log +++ /dev/null @@ -1,8 +0,0 @@ -2024/03/20 01:04:22 [error] 13#13: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: laravel.dev.local, request: "GET / HTTP/1.1", upstream: "fastcgi://172.18.0.4:9000", host: "localhost" -2024/03/20 01:05:23 [error] 13#13: *4 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: laravel.dev.local, request: "GET / HTTP/1.1", upstream: "fastcgi://172.18.0.4:9000", host: "localhost" -2024/03/20 01:05:24 [error] 13#13: *4 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: laravel.dev.local, request: "GET / HTTP/1.1", upstream: "fastcgi://172.18.0.4:9000", host: "localhost" -2024/03/20 01:05:39 [error] 13#13: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: laravel.dev.local, request: "GET / HTTP/1.1", upstream: "fastcgi://172.18.0.4:9000", host: "localhost" -2024/03/20 01:40:23 [error] 16#16: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: laravel.dev.local, request: "GET / HTTP/1.1", upstream: "fastcgi://172.18.0.4:9000", host: "0.0.0.0" -2024/03/20 01:40:25 [error] 16#16: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: laravel.dev.local, request: "GET / HTTP/1.1", upstream: "fastcgi://172.18.0.4:9000", host: "0.0.0.0" -2024/03/20 01:40:26 [error] 16#16: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: laravel.dev.local, request: "GET / HTTP/1.1", upstream: "fastcgi://172.18.0.4:9000", host: "0.0.0.0" -2024/03/20 01:40:39 [error] 16#16: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: laravel.dev.local, request: "GET / HTTP/1.1", upstream: "fastcgi://172.18.0.4:9000", host: "0.0.0.0" diff --git a/docker/php-fpm/99-xdebug.ini b/docker/php-fpm/99-xdebug.ini index 1aadf86..3921c29 100644 --- a/docker/php-fpm/99-xdebug.ini +++ b/docker/php-fpm/99-xdebug.ini @@ -1,9 +1,10 @@ zend_extension=xdebug.so xdebug.mode=coverage -xdebug.start_with_request=trigger +xdebug.start_with_request=yes xdebug.discover_client_host=1 xdebug.client_host=host.docker.internal xdebug.output_dir=/var/www/html -xdebug.log=/var/www/html/xdebug.log +xdebug.log=/var/www/html/logs/xdebug.log xdebug.log_level=10 xdebug.show_local_vars=1 +xdebug.client_port=9003 diff --git a/docker/php-fpm/Dockerfile b/docker/php-fpm/Dockerfile index bae1e4e..574e18f 100644 --- a/docker/php-fpm/Dockerfile +++ b/docker/php-fpm/Dockerfile @@ -151,7 +151,17 @@ RUN rm -r /var/lib/apt/lists/* RUN usermod -u 1000 www-data -WORKDIR /var/www/html +WORKDIR /var/www + +# Criar diretório de logs e ajustar permissões +RUN mkdir -p /var/www/storage/logs && \ + mkdir -p /var/www/bootstrap/cache && \ + chown -R www-data:www-data /var/www/storage /var/www/bootstrap/cache && \ + chmod -R 775 /var/www/storage /var/www/bootstrap/cache + +# Ajustar permissões do diretório principal +RUN chown -R www-data:www-data /var/www +RUN chmod -R 755 /var/www COPY ./docker-entrypoint.sh /usr/local/bin/ COPY ./supervisord.conf /etc/supervisord.conf diff --git a/docker/php-fpm/docker-entrypoint.sh b/docker/php-fpm/docker-entrypoint.sh index ee44ade..653dee9 100644 --- a/docker/php-fpm/docker-entrypoint.sh +++ b/docker/php-fpm/docker-entrypoint.sh @@ -55,4 +55,7 @@ elif [ -f /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini ]; then rm -rf /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini fi -exec "$@" \ No newline at end of file +chown -R www-data:www-data /var/www/storage /var/www/bootstrap/cache +chmod -R 775 /var/www/storage /var/www/bootstrap/cache + +exec "$@" diff --git a/docker/php-fpm/supervisord.conf b/docker/php-fpm/supervisord.conf index 5afc4d7..c565775 100644 --- a/docker/php-fpm/supervisord.conf +++ b/docker/php-fpm/supervisord.conf @@ -1,48 +1,47 @@ [supervisord] nodaemon=true +user=root +logfile=/var/log/supervisor/supervisord.log +pidfile=/var/run/supervisord.pid + +[program:laravel-serve] +command=php artisan serve --host=0.0.0.0 --port=8000 +directory=/var/www +autostart=true +autorestart=true +user=www-data +redirect_stderr=true +stderr_logfile=/var/log/supervisor/laravel_serve_err.log +stdout_logfile=/var/log/supervisor/laravel_serve_out.log + ### RODAR OS WORKS [program:diligence_consumer] command=php artisan diligence:consumer autostart=true autorestart=true -stderr_logfile=/dev/stderr -stdout_logfile=/dev/stdout +stderr_logfile=/var/log/supervisor/diligence_consumer_err.log +stdout_logfile=/var/log/supervisor/diligence_consumer_out.log [program:rabbitmq_consumer] command=php artisan rabbitmq:consume-published-recourse-emails autostart=true autorestart=true -stderr_logfile=/dev/stderr -stdout_logfile=/dev/stdout +stderr_logfile=/var/log/supervisor/rabbitmq_consumer_err.log +stdout_logfile=/var/log/supervisor/rabbitmq_consumer_out.log -[program:published-opinions] -command=php artisan rabbitmq:consume-published-opinions-emails + +[program:import_registration] +command=php artisan rabbitmq:import-registration-command autostart=true autorestart=true -stderr_logfile=/dev/stderr -stdout_logfile=/dev/stdout +stderr_logfile=/var/log/supervisor/import_registration_err.log +stdout_logfile=/var/log/supervisor/import_registration_out.log -[program:accountability_queue] -process_name=%(program_name)s -command=php /var/www/html/artisan queue:work +[program:opinion_management] +command=php artisan rabbitmq:opinion-management autostart=true autorestart=true -user=www-data -stdout_logfile=/var/www/html/storage/logs/worker.log -redirect_stderr=true - -[supervisord] -nodaemon=true -user=root -logfile=/var/log/supervisor/supervisord.log -pidfile=/var/run/supervisord.pid +stderr_logfile=/var/log/supervisor/opinion_management_err.log +stdout_logfile=/var/log/supervisor/opinion_management_out.log -# [program:php] -# command=%(ENV_SUPERVISOR_PHP_COMMAND)s -#user=%(ENV_SUPERVISOR_PHP_USER)s -# environment=LARAVEL_SAIL="1" -# stdout_logfile=/dev/stdout -# stdout_logfile_maxbytes=0 -# stderr_logfile=/dev/stderr -# stderr_logfile_maxbytes=0 diff --git a/docker/prod/docs/README.MD b/docker/prod/docs/README.MD deleted file mode 100644 index 2740b50..0000000 --- a/docker/prod/docs/README.MD +++ /dev/null @@ -1,12 +0,0 @@ - -### ✨ CRIAR IMAGEM MANUALMENTE - -✏️ Deve está na raiz do projeto e rodar o seguinte comando: - - - `docker build --no-cache -t secultceara/api-email:latest -f docker/prod/php-fpm/Dockerfile .` - -✏️ Para enviar a imagem criada manualemente para o Docker Hub deve realizar os passos: - - 1. Criar login da conta da secultceara com: `docker login -u {username}` - 2. Depois digitar a senha e após realizar o login com sucesso; - 3. Rodar o comando: `docker push docker.io/secultceara/api-email:latest` \ No newline at end of file diff --git a/docker/prod/nginx/.gitignore b/docker/prod/nginx/.gitignore deleted file mode 100644 index 003cd8e..0000000 --- a/docker/prod/nginx/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -*.crt -*.csr -*.key -*.pem \ No newline at end of file diff --git a/docker/prod/nginx/Dockerfile b/docker/prod/nginx/Dockerfile deleted file mode 100644 index b6e1a60..0000000 --- a/docker/prod/nginx/Dockerfile +++ /dev/null @@ -1,34 +0,0 @@ -FROM nginx:alpine - -COPY nginx.conf /etc/nginx/ - -RUN apk update \ - && apk upgrade \ - && apk --update add logrotate \ - && apk add --no-cache openssl \ - && apk add --no-cache bash - -RUN apk add --no-cache curl - -RUN set -x ; \ - addgroup -g 82 -S www-data ; \ - adduser -u 82 -D -S -G www-data www-data && exit 0 ; exit 1 - -ARG PHP_UPSTREAM_CONTAINER=fpm-email -ARG PHP_UPSTREAM_PORT=9000 - -# Create 'messages' file used from 'logrotate' -RUN touch /var/log/messages - -# Copy 'logrotate' config file -COPY logrotate/nginx /etc/logrotate.d/ - -# Set upstream conf and remove the default conf -RUN echo "upstream php-upstream { server ${PHP_UPSTREAM_CONTAINER}:${PHP_UPSTREAM_PORT}; }" > /etc/nginx/conf.d/upstream.conf \ - && rm /etc/nginx/conf.d/default.conf - -ADD ./startup.sh /opt/startup.sh -RUN sed -i 's/\r//g' /opt/startup.sh -CMD ["/bin/bash", "/opt/startup.sh"] - -EXPOSE 80 81 443 diff --git a/docker/prod/nginx/conf.d/app.conf b/docker/prod/nginx/conf.d/app.conf deleted file mode 100644 index cdaf0ad..0000000 --- a/docker/prod/nginx/conf.d/app.conf +++ /dev/null @@ -1,17 +0,0 @@ -server { - listen 80; - index index.php; - server_name localhost; - root /var/www/public; - location / { - try_files $uri $uri/ /index.php?$query_string; - } - location ~ \.php$ { - fastcgi_split_path_info ^(.+\.php)(/.+)$; - fastcgi_pass app:9000; # Aponta para o serviço `app` no docker-compose - fastcgi_index index.php; - include fastcgi_params; - fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; - fastcgi_param PATH_INFO $fastcgi_path_info; - } -} \ No newline at end of file diff --git a/docker/prod/nginx/logrotate/nginx b/docker/prod/nginx/logrotate/nginx deleted file mode 100644 index 8c89a83..0000000 --- a/docker/prod/nginx/logrotate/nginx +++ /dev/null @@ -1,14 +0,0 @@ -/var/log/nginx/*.log { - daily - missingok - rotate 32 - compress - delaycompress - nodateext - notifempty - create 644 www-data root - sharedscripts - postrotate - [ -f /var/run/nginx.pid ] && kill -USR1 `cat /var/run/nginx.pid` - endscript -} diff --git a/docker/prod/nginx/nginx.conf b/docker/prod/nginx/nginx.conf deleted file mode 100644 index 56ededb..0000000 --- a/docker/prod/nginx/nginx.conf +++ /dev/null @@ -1,34 +0,0 @@ -user www-data; -worker_processes 4; -pid /run/nginx.pid; -daemon off; - -events { - worker_connections 2048; - multi_accept on; - use epoll; -} - -http { - server_tokens off; - sendfile on; - tcp_nopush on; - tcp_nodelay on; - keepalive_timeout 15; - types_hash_max_size 2048; - client_max_body_size 20M; - include /etc/nginx/mime.types; - default_type application/octet-stream; - access_log /dev/stdout; - error_log /dev/stderr; - gzip on; - gzip_disable "msie6"; - - ssl_protocols TLSv1 TLSv1.1 TLSv1.2; - ssl_ciphers 'ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS'; - - include /etc/nginx/conf.d/*.conf; - include /etc/nginx/sites-available/*.conf; - open_file_cache off; # Disabled for issue 619 - charset UTF-8; -} diff --git a/docker/prod/nginx/sites/laravel.conf b/docker/prod/nginx/sites/laravel.conf deleted file mode 100644 index 5e7b01c..0000000 --- a/docker/prod/nginx/sites/laravel.conf +++ /dev/null @@ -1,57 +0,0 @@ - -server { - - listen 80; - listen [::]:80; - - add_header X-Frame-Options "SAMEORIGIN"; - add_header X-Content-Type-Options "nosniff"; - charset utf-8; - - # For https - listen 443 ssl; - listen [::]:443 ssl ipv6only=on; - ssl_certificate /etc/nginx/ssl/default.crt; - ssl_certificate_key /etc/nginx/ssl/default.key; - - server_name laravel.dev.local; - root /var/www/html/public; - index index.php index.html index.htm; - - location / { - try_files $uri $uri/ /index.php$is_args$args; - } - - location ~ \.php$ { - try_files $uri /index.php =404; - fastcgi_pass php-upstream; - fastcgi_index index.php; - fastcgi_buffers 16 16k; - fastcgi_buffer_size 32k; - fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; - #fixes timeouts - fastcgi_read_timeout 600; - include fastcgi_params; - } - - location ~ /\.ht { - deny all; - } - - location /.well-known/acme-challenge/ { - root /var/www/letsencrypt/; - log_not_found off; - } - location = /favicon.ico { - access_log off; - log_not_found off; - } - location = /robots.txt { - access_log off; - log_not_found off; - } - - - error_log /var/log/nginx/laravel_error.log; - access_log /var/log/nginx/laravel_access.log; -} diff --git a/docker/prod/nginx/ssl/generate-keys.sh b/docker/prod/nginx/ssl/generate-keys.sh deleted file mode 100644 index 8f315d5..0000000 --- a/docker/prod/nginx/ssl/generate-keys.sh +++ /dev/null @@ -1,4 +0,0 @@ -openssl genrsa -out "./default.key" 2048 -chmod 644 ./default.key -openssl req -new -key "./default.key" -out "./default.csr" -subj "/CN=default/O=default/C=UK" -openssl x509 -req -days 365 -in "./default.csr" -signkey "./default.key" -out "./default.crt" diff --git a/docker/prod/nginx/startup.sh b/docker/prod/nginx/startup.sh deleted file mode 100644 index b5bbe4f..0000000 --- a/docker/prod/nginx/startup.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -if [ ! -f /etc/nginx/ssl/default.crt ]; then - openssl genrsa -out "/etc/nginx/ssl/default.key" 2048 - openssl req -new -key "/etc/nginx/ssl/default.key" -out "/etc/nginx/ssl/default.csr" -subj "/CN=default/O=default/C=UK" - openssl x509 -req -days 365 -in "/etc/nginx/ssl/default.csr" -signkey "/etc/nginx/ssl/default.key" -out "/etc/nginx/ssl/default.crt" - chmod 644 /etc/nginx/ssl/default.key -fi - - -# cron job to restart nginx every 6 hour -(crontab -l ; echo "0 0 */4 * * nginx -s reload") | crontab - - -# Start crond in background -crond -l 2 -b - - -#* * * * * root nginx -s reload >> /var/log/cron.log - -# Start nginx in foreground -echo "NGINX started, daemon will restart every 6 hours now."; -nginx - diff --git a/docker/prod/php-fpm/Dockerfile b/docker/prod/php-fpm/Dockerfile deleted file mode 100644 index 94038b0..0000000 --- a/docker/prod/php-fpm/Dockerfile +++ /dev/null @@ -1,43 +0,0 @@ -FROM php:8.4-fpm -RUN apt-get update && \ - apt-get install -y --force-yes --no-install-recommends \ - libmemcached-dev \ - libzip-dev \ - libz-dev \ - libpq-dev \ - libjpeg-dev \ - libpng-dev \ - libfreetype6-dev \ - libssl-dev \ - openssh-server \ - libmagickwand-dev \ - git \ - cron \ - nano \ - libxml2-dev \ - libreadline-dev \ - libgmp-dev \ - mariadb-client \ - unzip \ - supervisor \ - && docker-php-ext-install soap exif pcntl zip pdo_mysql pdo_pgsql bcmath intl gmp sockets \ - && pecl install redis && docker-php-ext-enable redis \ - && pecl install memcached \ - && docker-php-ext-enable memcached \ - && docker-php-ext-install gd \ - && docker-php-ext-configure gd --with-freetype --with-jpeg - -COPY --from=composer:latest /usr/bin/composer /usr/bin/composer -WORKDIR /var/www/html -COPY . /var/www/html -COPY ./docker/prod/php-fpm/supervisord.conf /etc/supervisord.conf -COPY ./docker/prod/php-fpm/published.sh /etc/published.sh -COPY ./docker/prod/php-fpm/works.sh /etc/works.sh -COPY ./docker/prod/php-fpm/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh - -RUN composer install --no-dev --optimize-autoloader -RUN chown -R www-data:www-data /var/www && chmod -R 755 /var/www/html/storage -RUN chmod +x /usr/local/bin/docker-entrypoint.sh - -EXPOSE 9000 -ENTRYPOINT ["docker-entrypoint.sh"] \ No newline at end of file diff --git a/docker/prod/php-fpm/docker-entrypoint.sh b/docker/prod/php-fpm/docker-entrypoint.sh deleted file mode 100644 index 97da946..0000000 --- a/docker/prod/php-fpm/docker-entrypoint.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/bash - -# Destination of env file inside container -ENV_FILE="/var/www/.env" - -for VAR in XDEBUG PHP_IDE_CONFIG REMOTE_HOST -do - if [ -z "${!VAR}" ] && [ -f "${ENV_FILE}" ]; then - VALUE=$(grep $VAR $ENV_FILE | cut -d '=' -f 2-) - if [ ! -z "${VALUE}" ]; then - sed -i "/$VAR/d" ~/.bashrc - echo "export $VAR=$VALUE" >> ~/.bashrc; - fi - fi -done - -if [ -z "${REMOTE_HOST}" ]; then - REMOTE_HOST="host.docker.internal" - sed -i "/REMOTE_HOST/d" ~/.bashrc - echo "export REMOTE_HOST=\"$REMOTE_HOST\"" >> ~/.bashrc; -fi - -. ~/.bashrc - -service cron start - -if [ "true" == "$XDEBUG" ] && [ ! -f /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini ]; then - sed -i '/PHP_IDE_CONFIG/d' /etc/cron.d/laravel-scheduler - if [ ! -z "${PHP_IDE_CONFIG}" ]; then - echo -e "PHP_IDE_CONFIG=\"$PHP_IDE_CONFIG\"\n$(cat /etc/cron.d/laravel-scheduler)" > /etc/cron.d/laravel-scheduler - fi - docker-php-ext-enable xdebug && \ - echo "xdebug.remote_enable=1" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini; \ - echo "xdebug.remote_autostart=1" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini; \ - echo "xdebug.remote_connect_back=0" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini; \ - echo "xdebug.remote_host=$REMOTE_HOST" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini; -elif [ -f /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini ]; then - sed -i '/PHP_IDE_CONFIG/d' /etc/cron.d/laravel-scheduler - rm -rf /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini -fi - -echo "Starting supervisord with command: $@" -exec "$@" \ No newline at end of file diff --git a/docker/prod/php-fpm/laravel.ini b/docker/prod/php-fpm/laravel.ini deleted file mode 100644 index 486a2ca..0000000 --- a/docker/prod/php-fpm/laravel.ini +++ /dev/null @@ -1,13 +0,0 @@ -date.timezone=UTC -display_errors=Off -log_errors=On - -; Maximum amount of memory a script may consume (128MB) -; http://php.net/memory-limit -memory_limit = 128M -; Maximum allowed size for uploaded files. -; http://php.net/upload-max-filesize -upload_max_filesize = 20M -; Sets max size of post data allowed. -; http://php.net/post-max-size -post_max_size = 20M diff --git a/docker/prod/php-fpm/published.sh b/docker/prod/php-fpm/published.sh deleted file mode 100755 index f14c4df..0000000 --- a/docker/prod/php-fpm/published.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -while true -do - php artisan rabbitmq:consume-published-recourse-emails - echo "Worker da publicação caiu. Reiniciando em 60s..." - sleep 60 -done diff --git a/docker/prod/php-fpm/supervisord.conf b/docker/prod/php-fpm/supervisord.conf deleted file mode 100644 index c99b341..0000000 --- a/docker/prod/php-fpm/supervisord.conf +++ /dev/null @@ -1,48 +0,0 @@ -[supervisord] -nodaemon=true -user=root -logfile=/var/log/supervisor/supervisord.log -pidfile=/var/run/supervisord.pid -logfile_maxbytes=0 # - -[program:php-fpm] -command=/usr/local/sbin/php-fpm --nodaemonize -autostart=true -autorestart=true -stderr_logfile=/var/log/php-fpm.err.log -stdout_logfile=/var/log/php-fpm.out.log -priority=100 - -### RODAR OS WORKS -[program:rabbitmq_published] -command=/bin/bash /etc/published.sh -autostart=true -autorestart=true -stderr_logfile=/var/log/rabbitmq_published.err.log -stdout_logfile=/var/log/rabbitmq_published.out.log -user=www-data -numprocs=1 -priority=200 -logfile_maxbytes=50MB ; Tamanho máximo do log antes de rotacionar (opcional) -logfile_backups=5 - -[program:rabbitmq_pc] -command=/bin/bash /etc/works.sh -autostart=true -autorestart=true -stderr_logfile=/var/log/rabbitmq_consumer.err.log -stdout_logfile=/var/log/rabbitmq_consumer.out.log -user=www-data -numprocs=1 -priority=200 -logfile_maxbytes=50MB ; Tamanho máximo do log antes de rotacionar (opcional) -logfile_backups=5 - -[program:accountability_queue] -process_name=%(program_name)s -command=php /var/www/html/artisan queue:work -autostart=true -autorestart=true -user=www-data -stdout_logfile=/var/www/html/storage/logs/worker.log -redirect_stderr=true diff --git a/docker/prod/php-fpm/works.sh b/docker/prod/php-fpm/works.sh deleted file mode 100755 index 1455b26..0000000 --- a/docker/prod/php-fpm/works.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -while true -do - php artisan diligence:consumer - echo "Worker da PC caiu. Reiniciando em 60s..." - sleep 60 -done diff --git a/docker/production/supervisor/conf.d/diligence_consumer.conf b/docker/production/supervisor/conf.d/diligence_consumer.conf new file mode 100644 index 0000000..94a0c88 --- /dev/null +++ b/docker/production/supervisor/conf.d/diligence_consumer.conf @@ -0,0 +1,8 @@ +[program:diligence_consumer] +process_name=%(program_name)s_%(process_num)02d +command=php artisan diligence:consumer +autostart=true +autorestart=true +numprocs=1 +redirect_stderr=true +stdout_logfile=/var/log/supervisor/diligence_consumer.log \ No newline at end of file diff --git a/docker/production/supervisor/conf.d/import_registration.conf b/docker/production/supervisor/conf.d/import_registration.conf new file mode 100644 index 0000000..dec814a --- /dev/null +++ b/docker/production/supervisor/conf.d/import_registration.conf @@ -0,0 +1,8 @@ +[program:import_registration] +process_name=%(program_name)s_%(process_num)02d +command=php artisan rabbitmq:import-registration-command +autostart=true +autorestart=true +numprocs=1 +redirect_stderr=true +stdout_logfile=/var/log/supervisor/import_registration.log \ No newline at end of file diff --git a/docker/production/supervisor/conf.d/opinion_management.conf b/docker/production/supervisor/conf.d/opinion_management.conf new file mode 100644 index 0000000..452ec58 --- /dev/null +++ b/docker/production/supervisor/conf.d/opinion_management.conf @@ -0,0 +1,8 @@ +[program:opinion_management] +process_name=%(program_name)s_%(process_num)02d +command=php artisan rabbitmq:opinion-management +autostart=true +autorestart=true +numprocs=1 +redirect_stderr=true +stdout_logfile=/var/log/supervisor/opinion_management.log \ No newline at end of file diff --git a/docker/production/supervisor/conf.d/php-fpm.conf b/docker/production/supervisor/conf.d/php-fpm.conf new file mode 100644 index 0000000..5502d24 --- /dev/null +++ b/docker/production/supervisor/conf.d/php-fpm.conf @@ -0,0 +1,8 @@ +[program:php-fpm] +process_name=%(program_name)s_%(process_num)02d +command=php-fpm -F +autostart=true +autorestart=true +numprocs=1 +redirect_stderr=true +stdout_logfile=/var/log/supervisor/rabbitmq_consumer.log \ No newline at end of file diff --git a/docker/production/supervisor/conf.d/rabbitmq_consumer.conf b/docker/production/supervisor/conf.d/rabbitmq_consumer.conf new file mode 100644 index 0000000..ad7e4f6 --- /dev/null +++ b/docker/production/supervisor/conf.d/rabbitmq_consumer.conf @@ -0,0 +1,8 @@ +[program:rabbitmq_consumer] +process_name=%(program_name)s_%(process_num)02d +command=php artisan rabbitmq:consume-published-recourse-emails +autostart=true +autorestart=true +numprocs=1 +redirect_stderr=true +stdout_logfile=/var/log/supervisor/rabbitmq_consumer.log \ No newline at end of file diff --git a/docker/production/supervisor/supervisord.conf b/docker/production/supervisor/supervisord.conf new file mode 100644 index 0000000..6367cf3 --- /dev/null +++ b/docker/production/supervisor/supervisord.conf @@ -0,0 +1,29 @@ +; supervisor config file + +[unix_http_server] +file=/var/run/supervisor.sock ; (the path to the socket file) +chmod=0700 ; sockef file mode (default 0700) + +[supervisord] +logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log) +pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid) +childlogdir=/var/log/supervisor ; ('AUTO' child log dir, default $TEMP) +nodaemon=true + +; the below section must remain in the config file for RPC +; (supervisorctl/web interface) to work, additional interfaces may be +; added by defining them in separate rpcinterface: sections +[rpcinterface:supervisor] +supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface + +[supervisorctl] +serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL for a unix socket + +; The [include] section can just contain the "files" setting. This +; setting can list multiple files (separated by whitespace or +; newlines). It can also contain wildcards. The filenames are +; interpreted as relative to this file. Included files *cannot* +; include files themselves. + +[include] +files = /etc/supervisor/conf.d/*.conf \ No newline at end of file diff --git a/docs/RABBITMQ.md b/docs/RABBITMQ.md index 650be98..84462d2 100644 --- a/docs/RABBITMQ.md +++ b/docs/RABBITMQ.md @@ -9,4 +9,32 @@ Para iniciar o serviço RabbitMq na mesma rede que esse repositório usa no dock Para notificação de e-mail para os recuros deve rodar o seguinte comando: -- `docker exec php_api php artisan rabbitmq:consume-published-recourse-emails` \ No newline at end of file +- `docker exec php_api php artisan rabbitmq:consume-published-recourse-emails` + +## ✨ Observação + +Todos os demais comandos de consumer estão no arquivos `supervisord.conf` + +## 🧱 Construindo Workers +Com o comando: `make:custom-files nome_do_arquivo` , criará 03 arquivos padrões na seguinte estrutura + - app/Console/Commands + - app/Mail + - resources/views/emails + +Todos será o nome que foi passado por parâmetro, sendo assim bastará editar o necessário para a sua atividade. + +## Comando uteis para Rabbitmq + +1. **Limpar Filas**: + - Liste as filas: + ```bash + rabbitmqctl list_queues + ``` + - Delete filas desnecessárias: + ```bash + rabbitmqctl delete_queue nome_da_fila + ``` + - Delete TODAS as filas desnecessárias: + ```bash + rabbitmqctl list_queues | awk '{ print $1 }' | xargs -L1 rabbitmqctl delete_queue + ``` diff --git a/phpunit.xml b/phpunit.xml index 6120840..2f317b6 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -3,6 +3,7 @@ xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" + processIsolation="true" > @@ -27,6 +28,10 @@ + + + + diff --git a/resources/views/emails/import-registration.blade.php b/resources/views/emails/import-registration.blade.php new file mode 100644 index 0000000..d98e859 --- /dev/null +++ b/resources/views/emails/import-registration.blade.php @@ -0,0 +1,40 @@ +@include('emails/header') + + + + + + + +@include('emails/footer') diff --git a/resources/views/emails/opinion-management.blade.php b/resources/views/emails/opinion-management.blade.php new file mode 100644 index 0000000..f483fe3 --- /dev/null +++ b/resources/views/emails/opinion-management.blade.php @@ -0,0 +1,26 @@ +@include('emails/header') + +

Olá, {{$data['agent']['name']}}

+

+ Temos uma ótima notícia! As justificativas dos pareceristas para a oportunidade + {{$data['opportunity']}} já estão disponíveis para você. +

+

+ Você pode acessá-las diretamente no seu painel administrativo no Mapa Cultural do Ceará. + Basta fazer login no sistema através do link da sua inscrição abaixo e navegar até a seção + correspondente para visualizar a justificativa completa. +

+

+ Link da Inscrição: {{$data['number']}}
+ Inscrição: {{$data['number']}} +

+

+ É fundamental que você verifique essa informação, pois ela é importante para o acompanhamento do seu processo. +

+

+ Agradecemos a sua participação e o seu contínuo envolvimento com o Mapa Cultural do Ceará. +

+

+ +

+@include('emails/footer') diff --git a/routes/web.php b/routes/web.php index 1128a7c..2e6a558 100644 --- a/routes/web.php +++ b/routes/web.php @@ -2,6 +2,7 @@ use Illuminate\Support\Facades\Route; use JuniorShyko\Phpextensive\Extensive; +use function Sentry\captureException; Route::get('/', function () { return ['Laravel' => app()->version()]; @@ -12,11 +13,16 @@ $e = new Extensive; dump($e->extensive(185421.99)); // mil e um reais - dd($e->extensive(54001.99, Extensive::MALE_NUMBER)); + try { + $this->functionThatMayFail(); + } catch (\Throwable $exception) { + captureException($exception); + } - Route::view('/welcome', 'emails.deadline-for-accountability', [ - 'days' => '', - ]); +}); + +Route::get('/debug-sentry', function () { + throw new Exception('My first Sentry error!'); }); require __DIR__.'/auth.php'; diff --git a/storage/app/.gitignore b/storage/app/.gitignore old mode 100644 new mode 100755 diff --git a/storage/app/public/.gitignore b/storage/app/public/.gitignore old mode 100644 new mode 100755 diff --git a/storage/framework/.gitignore b/storage/framework/.gitignore old mode 100644 new mode 100755 diff --git a/storage/framework/cache/.gitignore b/storage/framework/cache/.gitignore old mode 100644 new mode 100755 diff --git a/storage/framework/cache/data/.gitignore b/storage/framework/cache/data/.gitignore old mode 100644 new mode 100755 diff --git a/storage/framework/sessions/.gitignore b/storage/framework/sessions/.gitignore old mode 100644 new mode 100755 diff --git a/storage/framework/testing/.gitignore b/storage/framework/testing/.gitignore old mode 100644 new mode 100755 diff --git a/storage/framework/views/.gitignore b/storage/framework/views/.gitignore old mode 100644 new mode 100755 diff --git a/storage/logs/.gitignore b/storage/logs/.gitignore old mode 100644 new mode 100755 diff --git a/tests/Feature/Auth/AuthenticationTest.php b/tests/Feature/Auth/AuthenticationTest.php deleted file mode 100644 index 2236551..0000000 --- a/tests/Feature/Auth/AuthenticationTest.php +++ /dev/null @@ -1,47 +0,0 @@ -create(); - - $response = $this->post('/login', [ - 'email' => $user->email, - 'password' => 'password', - ]); - - $this->assertAuthenticated(); - $response->assertNoContent(); - } - - public function test_users_can_not_authenticate_with_invalid_password(): void - { - $user = User::factory()->create(); - - $this->post('/login', [ - 'email' => $user->email, - 'password' => 'wrong-password', - ]); - - $this->assertGuest(); - } - - public function test_users_can_logout(): void - { - $user = User::factory()->create(); - - $response = $this->actingAs($user)->post('/logout'); - - $this->assertGuest(); - $response->assertNoContent(); - } -} diff --git a/tests/Feature/Auth/EmailVerificationTest.php b/tests/Feature/Auth/EmailVerificationTest.php deleted file mode 100644 index 90caeb8..0000000 --- a/tests/Feature/Auth/EmailVerificationTest.php +++ /dev/null @@ -1,53 +0,0 @@ -create([ - 'email_verified_at' => null, - ]); - - Event::fake(); - - $verificationUrl = URL::temporarySignedRoute( - 'verification.verify', - now()->addMinutes(60), - ['id' => $user->id, 'hash' => sha1($user->email)] - ); - - $response = $this->actingAs($user)->get($verificationUrl); - - Event::assertDispatched(Verified::class); - $this->assertTrue($user->fresh()->hasVerifiedEmail()); - $response->assertRedirect(config('app.frontend_url').'/dashboard?verified=1'); - } - - public function test_email_is_not_verified_with_invalid_hash(): void - { - $user = User::factory()->create([ - 'email_verified_at' => null, - ]); - - $verificationUrl = URL::temporarySignedRoute( - 'verification.verify', - now()->addMinutes(60), - ['id' => $user->id, 'hash' => sha1('wrong-email')] - ); - - $this->actingAs($user)->get($verificationUrl); - - $this->assertFalse($user->fresh()->hasVerifiedEmail()); - } -} diff --git a/tests/Feature/Auth/PasswordResetTest.php b/tests/Feature/Auth/PasswordResetTest.php deleted file mode 100644 index 9b652bc..0000000 --- a/tests/Feature/Auth/PasswordResetTest.php +++ /dev/null @@ -1,49 +0,0 @@ -create(); - - $this->post('/forgot-password', ['email' => $user->email]); - - Notification::assertSentTo($user, ResetPassword::class); - } - - public function test_password_can_be_reset_with_valid_token(): void - { - Notification::fake(); - - $user = User::factory()->create(); - - $this->post('/forgot-password', ['email' => $user->email]); - - Notification::assertSentTo($user, ResetPassword::class, function (object $notification) use ($user) { - $response = $this->post('/reset-password', [ - 'token' => $notification->token, - 'email' => $user->email, - 'password' => 'password', - 'password_confirmation' => 'password', - ]); - - $response - ->assertSessionHasNoErrors() - ->assertStatus(200); - - return true; - }); - } -} diff --git a/tests/Feature/Auth/RegistrationTest.php b/tests/Feature/Auth/RegistrationTest.php deleted file mode 100644 index b48e150..0000000 --- a/tests/Feature/Auth/RegistrationTest.php +++ /dev/null @@ -1,24 +0,0 @@ -post('/register', [ - 'name' => 'Test User', - 'email' => 'test@example.com', - 'password' => 'password', - 'password_confirmation' => 'password', - ]); - - $this->assertAuthenticated(); - $response->assertNoContent(); - } -} diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php deleted file mode 100644 index 8364a84..0000000 --- a/tests/Feature/ExampleTest.php +++ /dev/null @@ -1,19 +0,0 @@ -get('/'); - - $response->assertStatus(200); - } -} diff --git a/tests/Feature/PC/EmailTest.php b/tests/Feature/PC/EmailTest.php deleted file mode 100644 index c923259..0000000 --- a/tests/Feature/PC/EmailTest.php +++ /dev/null @@ -1,32 +0,0 @@ - config('jwt.secret'), - ]); - - $this->assertEquals(200, $response->status()); - - $jsonResponse = $response->json(); - NotificationAccountability::dispatch($jsonResponse); - - $this->assertIsArray($jsonResponse); - - if (count($jsonResponse) > 0) { - // Verifica se a resposta contém uma chave específica - $this->assertArrayHasKey('registration_number', $jsonResponse[0]); - } - } -} diff --git a/tests/Unit/Console/Commands/ConsumerCommandTest.php b/tests/Unit/Console/Commands/ConsumerCommandTest.php index e3e2fa9..2419ba6 100644 --- a/tests/Unit/Console/Commands/ConsumerCommandTest.php +++ b/tests/Unit/Console/Commands/ConsumerCommandTest.php @@ -44,7 +44,7 @@ public function test_process_message_for_prop_route() 'number' => '12345', 'days' => 30, ]), - config('app.rabbitmq.route_key_prop'), + config('rabbitmq.routing.module_accountability_proponent'), ); // Create a partial mock of the command @@ -71,7 +71,7 @@ public function test_process_message_for_adm_route() 'owner' => 'owner@example.com', 'registration' => '54321', ]), - config('app.rabbitmq.route_key_adm') + config('rabbitmq.routing.module_accountability_adm') ); // Create a partial mock of the command diff --git a/tests/Unit/Console/Commands/ImportRegistrationCommandTest.php b/tests/Unit/Console/Commands/ImportRegistrationCommandTest.php new file mode 100644 index 0000000..57e3335 --- /dev/null +++ b/tests/Unit/Console/Commands/ImportRegistrationCommandTest.php @@ -0,0 +1,93 @@ +byDefault(); + Log::shouldReceive('error')->byDefault(); + } + + // Limpa os mocks do Mockery após cada teste + protected function tearDown(): void + { + Mockery::close(); + parent::tearDown(); + } + + // Para criar um mock do AMQPMessage + protected function createMockAMQPMessage(string $body, string $routingKey): AMQPMessage + { + $message = Mockery::mock(AMQPMessage::class); + $message->shouldReceive('getBody')->andReturn($body); + $message->shouldReceive('get')->with('routing_key')->andReturn($routingKey); + return $message; + } + + public function test_handle_processes_valid_message_and_sends_emails() + { + config(['sentry.dsn' => null]); + // Mockando para evitar conexaoes reais ao Rabbitmq + $queueService = Mockery::mock(RabbitMQService::class); + $this->app->instance(RabbitMQService::class, $queueService); + + // Dados completos que a classe ImporteRegistrationMail espera + $messageBody = json_encode([ + [ + 'registration' => '12345', + 'opp_id' => '1', + 'opp_name' => 'Oportunidade Teste 1', + 'number' => '001', + 'agent_name' => 'João Silva', + 'agent_email' => 'test1@example.com', + ], + [ + 'registration' => '67890', + 'opp_id' => '2', + 'opp_name' => 'Oportunidade Teste 2', + 'number' => '002', + 'agent_name' => 'Maria Santos', + 'agent_email' => 'test2@example.com', + ] + ]); + + $msgMock = $this->createMockAMQPMessage($messageBody, 'module_import_registration_draft'); + + Log::shouldReceive('info')->byDefault(); + Mail::fake(); + + $command = new ImportRegistrationCommand($queueService); + $reflection = new \ReflectionClass($command); + $method = $reflection->getMethod('processMessage'); + $method->setAccessible(true); + + try { + $method->invoke($command, $msgMock); + } catch (\Exception $e) { + $this->fail('Exception in processMessage: ' . $e->getMessage()); + } + $sentEmails = Mail::sent(ImporteRegistrationMail::class); + + // Verificar cada email individualmente + Mail::assertSent(ImporteRegistrationMail::class, function ($mail) { + return $mail->content()->with['agent_email'] === 'test1@example.com'; + }); + } + + +} diff --git a/tests/Unit/Mail/EmailDispatchTest.php b/tests/Unit/Mail/EmailDispatchTest.php new file mode 100644 index 0000000..77633c5 --- /dev/null +++ b/tests/Unit/Mail/EmailDispatchTest.php @@ -0,0 +1,108 @@ +artisan('migrate'); + config(['auditing.driver' => 'database']); + config(['audit.enabled' => true]); + } + + /** + * Test if an email dispatch record can be created and audited. + * + * @return void + */ + public function test_can_create_email_dispatch_and_audit() + { + $user = \App\Models\User::factory()->create(); + $this->actingAs($user); + + // Dados para criar um registro de EmailDispatch + $emailDispatch = EmailDispatch::create([ + 'to' => 'user@example.com', + 'subject' => 'Original Subject', + 'content' => 'Test body', + 'mailable_type' => 'App\\Mail\\TestMail', + 'meta' => ['campaign_id' => 456], + 'dispatched_at' => now() + ]); + // Mostrando no terminal os dados das tabelas para debug + \DB::table('email_dispatches')->get()->dump(); + \DB::table('audits')->get()->dump(); + + // Verifica se o registro foi salvo no banco de dados + $this->assertDatabaseHas('email_dispatches', [ + 'to' => 'user@example.com', + 'subject' => 'Original Subject', + 'content' => 'Test body', + 'mailable_type' => 'App\\Mail\\TestMail', + 'id' => $emailDispatch->id, + ]); + + // Verifica se a auditoria foi criada na tabela 'audits' + $this->assertDatabaseHas('audits', [ + 'auditable_type' => EmailDispatch::class, + 'auditable_id' => $emailDispatch->id, + 'event' => 'created', + ]); + + // Verifica se os timestamps foram criados automaticamente + $this->assertNotNull($emailDispatch->created_at); + $this->assertNotNull($emailDispatch->updated_at); + } + + /** + * Test if an email dispatch record can be updated and audited. + * + * @return void + */ + public function test_can_update_email_dispatch_and_audit() + { + $user = \App\Models\User::factory()->create(); + $this->actingAs($user); + + // Cria um registro de EmailDispatch + $emailDispatch = EmailDispatch::create([ + 'to' => 'user@example.com', + 'subject' => 'Original Subject', + 'content' => 'Test body', + 'mailable_type' => 'App\\Mail\\TestMail', + 'meta' => ['campaign_id' => 456], + 'dispatched_at' => now() + ]); + + // Atualiza o registro + $emailDispatch->update([ + 'subject' => 'Updated Subject', + ]); + + // Verifica se o evento de auditoria foi registrado + $this->assertDatabaseHas('audits', [ + 'auditable_type' => 'App\Models\EmailDispatch', + 'auditable_id' => $emailDispatch->id, + 'event' => 'updated', + ]); + + \DB::table('audits')->get()->dump(); + + // Verifica se a auditoria foi criada na tabela 'audits' + $this->assertDatabaseHas('audits', [ + 'auditable_type' => EmailDispatch::class, + 'auditable_id' => $emailDispatch->id, + 'event' => 'created', + ]); + } + +} diff --git a/tests/Unit/Mail/SaveDataEmailDatabaseTest.php b/tests/Unit/Mail/SaveDataEmailDatabaseTest.php new file mode 100644 index 0000000..116be61 --- /dev/null +++ b/tests/Unit/Mail/SaveDataEmailDatabaseTest.php @@ -0,0 +1,42 @@ +withoutExceptionHandling(); + + $data = [ + 'to' => 'user@example.com', + 'subject' => 'Original Subject', + 'content' => 'Test body', + 'mailable_type' => 'App\\Mail\\WelcomeEmail', + 'meta' => ['campaign_id' => 456], + 'dispatched_at' => now()->toDateTimeString(), + ]; + + $dispatch = EmailDispatch::create($data); + $dispatch->update(['subject' => 'Updated Subject']); + + $this->assertDatabaseHas('audits', [ + 'auditable_type' => 'App\\Models\\EmailDispatch', + 'auditable_id' => $dispatch->id, + 'event' => 'updated', + ]); + } +}