sWalbrun / bieterrunde

Dieser Standalone-Webserver bietet umfangreiche Funktionen für die Abwicklung einer Beitragsrunde.
MIT License
6 stars 2 forks source link

Maximum execution time of 30 seconds exceeded #17

Open Cruiser79 opened 2 months ago

Cruiser79 commented 2 months ago

Hi, ich habe den Service laut Anleitung gestartet und er lief auch soweit durch. Container sind gestartet (solawi_php_init ist geexited, das soll sicher so), in der DB sind Daten enthalten, aber beim Aufruf von http://localhost/ werde ich auf https://localhost/main/login Weitergeleitet und bekomme folgende Fehlermeldung

image

Jemand eine Idee, woran das liegen könnte?

Cruiser79 commented 2 months ago

Zusätzliche Informationen noch dazu: Ich nutze Windows und Docker Desktop und habe den Befehl in einer Ubuntu WSL gestartet.

sWalbrun commented 1 month ago

Kannst du bitte den kompletten Call-Stack des FatalError teilen? Ich habe es leider erfolglos versucht nachzustellen.

Wurde der php-init Container mit Exit Code 0 gestoppt?

Falls nicht, kannst du versuchen, die max_execution_time temporär zu erhöhen. Dafür kannst du folgenden Git-Patch anwenden:

Index: server.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/server.php b/server.php
--- a/server.php    (revision 3c19fc9c18ec6cd159ae499a8ce3937399cb6b54)
+++ b/server.php    (date 1727959138517)
@@ -1,5 +1,7 @@
 <?php

+ini_set('max_execution_time', 300);
+
 $uri = urldecode(
     parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
 );
Cruiser79 commented 1 month ago

Der php-init Container ist erfolgreich mit Exit Code 0 beendet worden, daran scheint es nicht zu liegen.

Der Stack Trace-Tab sagt auch nicht viel mehr

<html>
<body>
<!--StartFragment-->
FatalError
--
Symfony\Component\ErrorHandler\Error\FatalError: Maximum execution time of 30 seconds exceeded    at /app/vendor/symfony/finder/Iterator/SortableIterator.php:51

<!--EndFragment-->
</body>
</html>

Im Exception-Tab steht noch folgendes mit aufgeklappten Punkten

Symfony\Component\ErrorHandler\Error\
FatalError
Show exception properties
Symfony\Component\ErrorHandler\Error\FatalError {#1720 ▼
  -error: array:4 [▼
    "type" => 1
    "message" => "Maximum execution time of 30 seconds exceeded"
    "file" => "/app/vendor/symfony/finder/Iterator/SortableIterator.php"
    "line" => 51
  ]
}
in [/app/vendor/symfony/finder/Iterator/SortableIterator.php ](https://localhost/main/login)(line 51)

Und hier nochmal die Logs der Containers

solawi_php_app

2024-10-04 08:01:09 {"level":"info","ts":1728021669.43691,"msg":"using config from file","file":"/etc/caddy/Caddyfile"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.4375765,"msg":"adapted config to JSON","adapter":"caddyfile"}
2024-10-04 08:01:09 {"level":"warn","ts":1728021669.4376025,"msg":"Caddyfile input is not formatted; run 'caddy fmt --overwrite' to fix inconsistencies","adapter":"caddyfile","file":"/etc/caddy/Caddyfile","line":10}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.4381166,"logger":"admin","msg":"admin endpoint started","address":"localhost:2019","enforce_origin":false,"origins":["//[::1]:2019","//127.0.0.1:2019","//localhost:2019"]}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.438191,"logger":"http.auto_https","msg":"server is listening only on the HTTPS port but has no TLS connection policies; adding one to enable TLS","server_name":"srv0","https_port":443}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.438206,"logger":"http.auto_https","msg":"enabling automatic HTTP->HTTPS redirects","server_name":"srv0"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.438259,"logger":"tls.cache.maintenance","msg":"started background certificate maintenance","cache":"0xc000249500"}
2024-10-04 08:01:09 {"level":"warn","ts":1728021669.4395573,"logger":"pki.ca.local","msg":"installing root certificate (you might be prompted for password)","path":"storage:pki/authorities/local/root.crt"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.4397712,"msg":"warning: \"certutil\" is not available, install \"certutil\" with \"apt install libnss3-tools\" or \"yum install nss-tools\" and try again"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.4397886,"msg":"define JAVA_HOME environment variable to use the Java trust"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7837634,"msg":"certificate installed properly in linux trusts"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7839146,"logger":"http","msg":"enabling HTTP/3 listener","addr":":443"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7840273,"msg":"failed to sufficiently increase receive buffer size (was: 208 kiB, wanted: 7168 kiB, got: 416 kiB). See https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes for details."}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7841172,"logger":"http.log","msg":"server running","name":"srv0","protocols":["h1","h2","h3"]}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7841625,"logger":"http.log","msg":"server running","name":"remaining_auto_https_redirects","protocols":["h1","h2","h3"]}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7841668,"logger":"http","msg":"enabling automatic TLS certificate management","domains":["localhost"]}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7843025,"msg":"FrankenPHP started 🐘","php_version":"8.3.12","num_threads":16}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7844884,"logger":"tls.obtain","msg":"acquiring lock","identifier":"localhost"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7848105,"msg":"autosaved config (load with --resume flag)","file":"/config/caddy/autosave.json"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7848415,"msg":"serving initial configuration"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7951133,"logger":"tls.obtain","msg":"lock acquired","identifier":"localhost"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7951856,"logger":"tls.obtain","msg":"obtaining certificate","identifier":"localhost"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7951152,"logger":"tls","msg":"cleaning storage unit","storage":"FileStorage:/data/caddy"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7954595,"logger":"tls","msg":"finished cleaning storage units"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7958643,"logger":"tls.obtain","msg":"certificate obtained successfully","identifier":"localhost","issuer":"local"}
2024-10-04 08:01:09 {"level":"info","ts":1728021669.7959201,"logger":"tls.obtain","msg":"releasing lock","identifier":"localhost"}
2024-10-04 08:01:09 {"level":"warn","ts":1728021669.7960787,"logger":"tls","msg":"stapling OCSP","error":"no OCSP stapling for [localhost]: no OCSP server specified in certificate","identifiers":["localhost"]}

172.0.0.1

2024-10-04 07:47:57 1:C 04 Oct 2024 05:47:57.737 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
2024-10-04 07:47:57 1:C 04 Oct 2024 05:47:57.738 * Redis version=7.4.0, bits=64, commit=00000000, modified=0, pid=1, just started
2024-10-04 07:47:57 1:C 04 Oct 2024 05:47:57.738 * Configuration loaded
2024-10-04 07:47:57 1:M 04 Oct 2024 05:47:57.738 * monotonic clock: POSIX clock_gettime
2024-10-04 07:47:57 1:M 04 Oct 2024 05:47:57.739 * Running mode=standalone, port=6379.
2024-10-04 07:47:57 1:M 04 Oct 2024 05:47:57.739 * Server initialized
2024-10-04 07:47:57 1:M 04 Oct 2024 05:47:57.748 * Creating AOF base file appendonly.aof.1.base.rdb on server start
2024-10-04 07:47:57 1:M 04 Oct 2024 05:47:57.759 * Creating AOF incr file appendonly.aof.1.incr.aof on server start
2024-10-04 07:47:57 1:M 04 Oct 2024 05:47:57.759 * Ready to accept connections tcp

solawi_database

2024-10-04 07:47:57 2024-10-04 05:47:57+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.39-1.el9 started.
2024-10-04 07:47:57 2024-10-04 05:47:57+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
2024-10-04 07:47:57 2024-10-04 05:47:57+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.39-1.el9 started.
2024-10-04 07:47:57 '/var/lib/mysql/mysql.sock' -> '/var/run/mysqld/mysqld.sock'
2024-10-04 07:47:58 2024-10-04T05:47:58.260130Z 0 [Warning] [MY-011068] [Server] The syntax '--skip-host-cache' is deprecated and will be removed in a future release. Please use SET GLOBAL host_cache_size=0 instead.
2024-10-04 07:47:58 2024-10-04T05:47:58.261803Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.39) starting as process 1
2024-10-04 07:47:58 2024-10-04T05:47:58.270637Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started.
2024-10-04 07:47:58 2024-10-04T05:47:58.448581Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended.
2024-10-04 07:47:58 2024-10-04T05:47:58.596757Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed.
2024-10-04 07:47:58 2024-10-04T05:47:58.596797Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel.
2024-10-04 07:47:58 2024-10-04T05:47:58.600399Z 0 [Warning] [MY-011810] [Server] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
2024-10-04 07:47:58 2024-10-04T05:47:58.624659Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/run/mysqld/mysqlx.sock
2024-10-04 07:47:58 2024-10-04T05:47:58.624704Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.39'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MySQL Community Server - GPL.

solawi_php_init

2024-10-04 07:47:58 PHP Warning:  Failed loading Zend extension 'xdebug.so' (tried: /usr/lib/php/20210902/xdebug.so (/usr/lib/php/20210902/xdebug.so: cannot open shared object file: No such file or directory), /usr/lib/php/20210902/xdebug.so.so (/usr/lib/php/20210902/xdebug.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
2024-10-04 07:47:58 Installing dependencies from lock file (including require-dev)
2024-10-04 07:47:58 Verifying lock file contents can be installed on current platform.
2024-10-04 07:47:58 Package operations: 206 installs, 0 updates, 0 removals
2024-10-04 07:47:58   - Downloading pestphp/pest-plugin (v2.0.1)
2024-10-04 07:47:58   - Downloading openspout/openspout (v4.14.0)
2024-10-04 07:47:58   - Downloading voku/portable-ascii (2.0.1)
2024-10-04 07:47:58   - Downloading symfony/polyfill-php80 (v1.27.0)
2024-10-04 07:47:58   - Downloading symfony/polyfill-mbstring (v1.27.0)
2024-10-04 07:47:58   - Downloading symfony/polyfill-ctype (v1.27.0)
2024-10-04 07:47:58   - Downloading phpoption/phpoption (1.9.1)
2024-10-04 07:47:58   - Downloading graham-campbell/result-type (v1.1.1)
2024-10-04 07:47:58   - Downloading vlucas/phpdotenv (v5.5.0)
2024-10-04 07:47:58   - Downloading symfony/css-selector (v6.3.0)
2024-10-04 07:47:58   - Downloading tijsverkoyen/css-to-inline-styles (2.2.6)
2024-10-04 07:47:58   - Downloading symfony/var-dumper (v6.3.0)
2024-10-04 07:47:58   - Downloading symfony/polyfill-uuid (v1.27.0)
2024-10-04 07:47:58   - Downloading symfony/uid (v6.3.0)
2024-10-04 07:47:58   - Downloading symfony/routing (v6.3.0)
2024-10-04 07:47:58   - Downloading symfony/process (v6.3.0)
2024-10-04 07:47:58   - Downloading symfony/polyfill-php72 (v1.27.0)
2024-10-04 07:47:58   - Downloading symfony/polyfill-intl-normalizer (v1.27.0)
2024-10-04 07:47:58   - Downloading symfony/polyfill-intl-idn (v1.27.0)
2024-10-04 07:47:58   - Downloading symfony/mime (v6.3.0)
2024-10-04 07:47:58   - Downloading psr/container (2.0.2)
2024-10-04 07:47:58   - Downloading symfony/service-contracts (v3.3.0)
2024-10-04 07:47:58   - Downloading psr/event-dispatcher (1.0.0)
2024-10-04 07:47:58   - Downloading symfony/event-dispatcher-contracts (v3.3.0)
2024-10-04 07:47:58   - Downloading symfony/event-dispatcher (v6.3.0)
2024-10-04 07:47:58   - Downloading psr/log (3.0.0)
2024-10-04 07:47:58   - Downloading doctrine/lexer (3.0.0)
2024-10-04 07:47:58   - Downloading egulias/email-validator (4.0.1)
2024-10-04 07:47:58   - Downloading symfony/mailer (v6.3.0)
2024-10-04 07:47:58   - Downloading symfony/polyfill-php83 (v1.27.0)
2024-10-04 07:47:58   - Downloading symfony/deprecation-contracts (v3.3.0)
2024-10-04 07:47:58   - Downloading symfony/http-foundation (v6.3.0)
2024-10-04 07:47:58   - Downloading symfony/error-handler (v6.3.0)
2024-10-04 07:47:58   - Downloading symfony/http-kernel (v6.3.0)
2024-10-04 07:47:58   - Downloading symfony/finder (v6.3.0)
2024-10-04 07:47:58   - Downloading symfony/polyfill-intl-grapheme (v1.27.0)
2024-10-04 07:47:58   - Downloading symfony/string (v6.3.0)
2024-10-04 07:47:58   - Downloading symfony/console (v6.3.0)
2024-10-04 07:47:58   - Downloading ramsey/collection (2.0.0)
2024-10-04 07:47:58   - Downloading brick/math (0.11.0)
2024-10-04 07:47:58   - Downloading ramsey/uuid (4.7.4)
2024-10-04 07:47:58   - Downloading psr/simple-cache (3.0.0)
2024-10-04 07:47:58   - Downloading nunomaduro/termwind (v1.15.1)
2024-10-04 07:47:58   - Downloading symfony/translation-contracts (v3.3.0)
2024-10-04 07:47:58   - Downloading symfony/translation (v6.3.0)
2024-10-04 07:47:58   - Downloading nesbot/carbon (2.67.0)
2024-10-04 07:47:58   - Downloading monolog/monolog (3.3.1)
2024-10-04 07:47:58   - Downloading league/mime-type-detection (1.11.0)
2024-10-04 07:47:58   - Downloading league/flysystem (3.15.1)
2024-10-04 07:47:58   - Downloading league/flysystem-local (3.15.0)
2024-10-04 07:47:58   - Downloading nette/utils (v4.0.0)
2024-10-04 07:47:58   - Downloading nette/schema (v1.2.3)
2024-10-04 07:47:58   - Downloading dflydev/dot-access-data (v3.0.2)
2024-10-04 07:47:58   - Downloading league/config (v1.2.0)
2024-10-04 07:47:58   - Downloading league/commonmark (2.4.0)
2024-10-04 07:47:58   - Downloading laravel/serializable-closure (v1.3.0)
2024-10-04 07:47:58   - Downloading guzzlehttp/uri-template (v1.0.1)
2024-10-04 07:47:58   - Downloading fruitcake/php-cors (v1.2.0)
2024-10-04 07:47:58   - Downloading webmozart/assert (1.11.0)
2024-10-04 07:47:58 Deleting the vendor/ directory
2024-10-04 07:47:58 Installing dependencies
2024-10-04 07:47:58   - Downloading dragonmantank/cron-expression (v3.3.2)
2024-10-04 07:47:58   - Downloading doctrine/inflector (2.0.6)
2024-10-04 07:47:58   - Downloading laravel/framework (v10.13.2)
2024-10-04 07:47:58   - Downloading spatie/simple-excel (3.2.0)
2024-10-04 07:47:58   - Downloading spatie/laravel-package-tools (1.15.0)
2024-10-04 07:47:58   - Downloading spatie/invade (1.1.1)
2024-10-04 07:47:58   - Downloading livewire/livewire (v2.12.3)
2024-10-04 07:47:58   - Downloading masterminds/html5 (2.8.0)
2024-10-04 07:47:58   - Downloading league/uri-parser (1.4.1)
2024-10-04 07:47:58   - Downloading tgalopin/html-sanitizer (1.5.0)
2024-10-04 07:47:58   - Downloading ryangjchandler/blade-capture-directive (v0.3.0)
2024-10-04 07:47:58   - Downloading filament/support (v2.17.46)
2024-10-04 07:47:58   - Downloading blade-ui-kit/blade-icons (1.5.1)
2024-10-04 07:47:58   - Downloading blade-ui-kit/blade-heroicons (1.4.0)
2024-10-04 07:47:58   - Downloading filament/notifications (v2.17.46)
2024-10-04 07:47:58   - Downloading danharrin/date-format-converter (v0.3.0)
2024-10-04 07:47:58   - Downloading filament/forms (v2.17.46)
2024-10-04 07:47:58   - Downloading akaunting/laravel-money (4.0.1)
2024-10-04 07:47:58   - Downloading filament/tables (v2.17.46)
2024-10-04 07:47:58   - Downloading sabberworm/php-css-parser (8.4.0)
2024-10-04 07:47:58   - Downloading phenx/php-svg-lib (0.5.0)
2024-10-04 07:47:58   - Downloading phenx/php-font-lib (0.5.4)
2024-10-04 07:47:58   - Downloading dompdf/dompdf (v2.0.3)
2024-10-04 07:47:58   - Downloading barryvdh/laravel-dompdf (v2.0.1)
2024-10-04 07:47:58   - Downloading alperenersoy/filament-export (v0.2.9)
2024-10-04 07:47:58   - Downloading phpstan/phpdoc-parser (1.22.0)
2024-10-04 07:47:58   - Downloading phpdocumentor/reflection-common (2.2.0)
2024-10-04 07:47:58   - Downloading doctrine/deprecations (v1.1.1)
2024-10-04 07:47:58   - Downloading phpdocumentor/type-resolver (1.7.2)
2024-10-04 07:47:58   - Downloading nikic/php-parser (v4.15.5)
2024-10-04 07:47:58   - Downloading psr/cache (3.0.0)
2024-10-04 07:47:58   - Downloading doctrine/event-manager (2.0.0)
2024-10-04 07:47:58   - Downloading doctrine/cache (2.2.0)
2024-10-04 07:47:58   - Downloading doctrine/dbal (3.6.3)
2024-10-04 07:47:58   - Downloading composer/pcre (3.1.0)
2024-10-04 07:47:58   - Downloading composer/class-map-generator (1.0.0)
2024-10-04 07:47:58   - Downloading barryvdh/reflection-docblock (v2.1.0)
2024-10-04 07:47:58   - Downloading barryvdh/laravel-ide-helper (v2.13.0)
2024-10-04 07:47:58   - Downloading laminas/laminas-code (4.11.0)
2024-10-04 07:47:58   - Downloading bensampo/laravel-enum (v6.3.3)
2024-10-04 07:47:58   - Downloading spatie/laravel-permission (5.10.1)
2024-10-04 07:47:58   - Downloading danharrin/livewire-rate-limiting (v1.1.0)
2024-10-04 07:47:58   - Downloading filament/filament (v2.17.46)
2024-10-04 07:47:59   - Downloading bezhansalleh/filament-shield (2.4.7)
2024-10-04 07:47:59   - Downloading bradyrenting/filament-passwordless (1.1.0)
2024-10-04 07:47:59   - Downloading sebastian/environment (6.0.1)
2024-10-04 07:47:59   - Downloading sebastian/version (4.0.1)
2024-10-04 07:47:59   - Downloading sebastian/type (4.0.0)
2024-10-04 07:47:59   - Downloading sebastian/recursion-context (5.0.0)
2024-10-04 07:47:59   - Downloading sebastian/object-reflector (3.0.0)
2024-10-04 07:47:59   - Downloading sebastian/object-enumerator (5.0.0)
2024-10-04 07:47:59   - Downloading sebastian/global-state (6.0.0)
2024-10-04 07:47:59   - Downloading sebastian/exporter (5.0.0)
2024-10-04 07:47:59   - Downloading sebastian/diff (5.0.3)
2024-10-04 07:47:59   - Downloading sebastian/comparator (5.0.0)
2024-10-04 07:47:59   - Downloading sebastian/code-unit (2.0.0)
2024-10-04 07:47:59   - Downloading sebastian/cli-parser (2.0.0)
2024-10-04 07:47:59   - Downloading phpunit/php-timer (6.0.0)
2024-10-04 07:47:59   - Downloading phpunit/php-text-template (3.0.0)
2024-10-04 07:47:59   - Downloading phpunit/php-invoker (4.0.0)
2024-10-04 07:47:59   - Downloading phpunit/php-file-iterator (4.0.2)
2024-10-04 07:47:59   - Downloading theseer/tokenizer (1.2.1)
2024-10-04 07:47:59   - Downloading sebastian/lines-of-code (2.0.0)
2024-10-04 07:47:59   - Downloading sebastian/complexity (3.0.0)
2024-10-04 07:47:59   - Downloading sebastian/code-unit-reverse-lookup (3.0.0)
2024-10-04 07:47:59   - Downloading phpunit/php-code-coverage (10.1.2)
2024-10-04 07:47:59   - Downloading phar-io/version (3.2.1)
2024-10-04 07:47:59   - Downloading phar-io/manifest (2.0.3)
2024-10-04 07:47:59   - Downloading myclabs/deep-copy (1.11.1)
2024-10-04 07:47:59   - Downloading phpunit/phpunit (10.2.1)
2024-10-04 07:47:59   - Downloading jean85/pretty-package-versions (2.0.5)
2024-10-04 07:47:59   - Downloading fidry/cpu-core-counter (0.5.1)
2024-10-04 07:47:59   - Downloading brianium/paratest (v7.1.4)
2024-10-04 07:47:59   - Downloading symfony/filesystem (v6.3.0)
2024-10-04 07:47:59   - Downloading sebastianfeldmann/cli (3.4.1)
2024-10-04 07:47:59   - Downloading sebastianfeldmann/git (3.8.9)
2024-10-04 07:47:59   - Downloading sebastianfeldmann/camino (0.9.5)
2024-10-04 07:47:59   - Downloading captainhook/captainhook (5.16.4)
2024-10-04 07:47:59   - Downloading codeat3/blade-codicons (1.32.2)
2024-10-04 07:47:59   - Downloading codeat3/blade-iconpark (1.5.1)
2024-10-04 07:47:59   - Downloading composer/ca-bundle (1.3.6)
2024-10-04 07:47:59   - Downloading composer/metadata-minifier (1.0.0)
2024-10-04 07:47:59   - Downloading composer/spdx-licenses (1.5.7)
2024-10-04 07:47:59   - Downloading davidhsianturi/blade-bootstrap-icons (v1.4.0)
2024-10-04 07:47:59   - Downloading fakerphp/faker (v1.22.0)
2024-10-04 07:47:59   - Downloading filp/whoops (2.15.2)
2024-10-04 07:47:59   - Downloading psr/http-message (1.1)
2024-10-04 07:47:59   - Downloading psr/http-client (1.0.2)
2024-10-04 07:47:59   - Downloading ralouphie/getallheaders (3.0.3)
2024-10-04 07:47:59   - Downloading psr/http-factory (1.0.2)
2024-10-04 07:47:59   - Downloading guzzlehttp/psr7 (2.5.0)
2024-10-04 07:47:59   - Downloading guzzlehttp/promises (2.0.0)
2024-10-04 07:47:59   - Downloading guzzlehttp/guzzle (7.7.0)
2024-10-04 07:47:59   - Downloading justinrainbow/json-schema (5.2.12)
2024-10-04 07:47:59   - Downloading laravel/pint (v1.10.2)
2024-10-04 07:47:59   - Downloading symfony/yaml (v6.3.0)
2024-10-04 07:47:59   - Downloading laravel/sail (v1.22.0)
2024-10-04 07:47:59   - Downloading psy/psysh (v0.11.18)
2024-10-04 07:47:59   - Downloading laravel/tinker (v2.8.1)
2024-10-04 07:47:59   - Downloading hamcrest/hamcrest-php (v2.0.1)
2024-10-04 07:47:59   - Downloading mockery/mockery (1.6.2)
2024-10-04 07:47:59   - Downloading myclabs/php-enum (1.8.4)
2024-10-04 07:47:59   - Downloading opis/string (2.0.1)
2024-10-04 07:47:59   - Downloading opis/uri (1.1.0)
2024-10-04 07:47:59   - Downloading phpdocumentor/reflection-docblock (5.3.0)
2024-10-04 07:47:59   - Downloading ta-tikoma/phpunit-architecture-test (0.7.3)
2024-10-04 07:47:59   - Downloading nunomaduro/collision (v7.5.2)
2024-10-04 07:47:59   - Downloading pestphp/pest-plugin-arch (v2.2.0)
2024-10-04 07:47:59   - Downloading pestphp/pest (v2.6.3)
2024-10-04 07:47:59   - Downloading pestphp/pest-plugin-livewire (v2.0.0)
2024-10-04 07:47:59   - Downloading symfony/var-exporter (v6.3.0)
2024-10-04 07:47:59   - Downloading symfony/dependency-injection (v6.3.0)
2024-10-04 07:47:59   - Downloading symfony/config (v6.3.0)
2024-10-04 07:47:59   - Downloading pdepend/pdepend (2.14.0)
2024-10-04 07:47:59   - Downloading composer/xdebug-handler (3.0.3)
2024-10-04 07:47:59   - Downloading phpmd/phpmd (2.13.0)
2024-10-04 07:47:59   - Downloading markbaker/matrix (3.0.1)
2024-10-04 07:47:59   - Downloading markbaker/complex (3.0.2)
2024-10-04 07:47:59   - Downloading maennchen/zipstream-php (v2.4.0)
2024-10-04 07:47:59   - Downloading ezyang/htmlpurifier (v4.16.0)
2024-10-04 07:47:59   - Downloading phpoffice/phpspreadsheet (1.28.0)
2024-10-04 07:47:59   - Downloading opis/json-schema (2.3.0)
2024-10-04 07:47:59   - Downloading jawira/case-converter (v3.5.1)
2024-10-04 07:47:59   - Downloading symfony/polyfill-php81 (v1.27.0)
2024-10-04 07:47:59   - Downloading symfony/polyfill-php73 (v1.27.0)
2024-10-04 07:47:59   - Downloading seld/signal-handler (2.0.1)
2024-10-04 07:47:59   - Downloading seld/phar-utils (1.2.1)
2024-10-04 07:47:59   - Downloading seld/jsonlint (1.10.0)
2024-10-04 07:47:59   - Downloading react/promise (v2.10.0)
2024-10-04 07:47:59   - Downloading composer/semver (3.3.2)
2024-10-04 07:47:59   - Downloading composer/composer (2.5.8)
2024-10-04 07:47:59   - Downloading ramsey/conventional-commits (1.5.0)
2024-10-04 07:47:59   - Downloading squizlabs/php_codesniffer (3.7.2)
2024-10-04 07:47:59   - Downloading stancl/virtualcolumn (v1.3.1)
2024-10-04 07:47:59   - Downloading stancl/jobpipeline (v1.6.2)
2024-10-04 07:47:59   - Downloading facade/ignition-contracts (1.0.2)
2024-10-04 07:47:59   - Downloading stancl/tenancy (v3.7.0)
2024-10-04 07:47:59   - Downloading maatwebsite/excel (3.1.48)
2024-10-04 07:47:59   - Downloading swalbrun/filament-regex-import (0.2.1)
2024-10-04 07:47:59   - Downloading spatie/array-to-xml (3.1.6)
2024-10-04 07:47:59   - Downloading netresearch/jsonmapper (v4.2.0)
2024-10-04 07:47:59   - Downloading felixfbecker/language-server-protocol (v1.5.2)
2024-10-04 07:47:59   - Downloading felixfbecker/advanced-json-rpc (v3.2.1)
2024-10-04 07:47:59   - Downloading dnoegel/php-xdg-base-dir (v0.1.1)
2024-10-04 07:47:59   - Downloading amphp/amp (v2.6.2)
2024-10-04 07:47:59   - Downloading amphp/byte-stream (v1.8.1)
2024-10-04 07:47:59   - Downloading vimeo/psalm (5.12.0)
2024-10-04 07:48:01    0/206 [>---------------------------]   0%
2024-10-04 07:59:58 
2024-10-04 07:59:58    INFO  Discovering packages.  
2024-10-04 07:59:58 
2024-10-04 07:59:58   akaunting/laravel-money ............................................... DONE
2024-10-04 07:59:58   alperenersoy/filament-export .......................................... DONE
2024-10-04 07:59:58   barryvdh/laravel-dompdf ............................................... DONE
2024-10-04 07:59:58   barryvdh/laravel-ide-helper ........................................... DONE
2024-10-04 07:59:58   bensampo/laravel-enum ................................................. DONE
2024-10-04 07:59:58   bezhansalleh/filament-shield .......................................... DONE
2024-10-04 07:59:58   blade-ui-kit/blade-heroicons .......................................... DONE
2024-10-04 07:59:58   blade-ui-kit/blade-icons .............................................. DONE
2024-10-04 07:59:58   bradyrenting/filament-passwordless .................................... DONE
2024-10-04 07:59:58   codeat3/blade-codicons ................................................ DONE
2024-10-04 07:59:58   codeat3/blade-iconpark ................................................ DONE
2024-10-04 07:59:58   davidhsianturi/blade-bootstrap-icons .................................. DONE
2024-10-04 07:59:58   filament/filament ..................................................... DONE
2024-10-04 07:59:58   filament/forms ........................................................ DONE
2024-10-04 07:59:58   filament/notifications ................................................ DONE
2024-10-04 07:59:58   filament/support ...................................................... DONE
2024-10-04 07:59:58   filament/tables ....................................................... DONE
2024-10-04 07:59:58   laravel/sail .......................................................... DONE
2024-10-04 07:59:58   laravel/tinker ........................................................ DONE
2024-10-04 07:59:58   livewire/livewire ..................................................... DONE
2024-10-04 07:59:58   maatwebsite/excel ..................................................... DONE
2024-10-04 07:59:58   nesbot/carbon ......................................................... DONE
2024-10-04 07:59:58   nunomaduro/collision .................................................. DONE
2024-10-04 07:59:58   nunomaduro/termwind ................................................... DONE
2024-10-04 07:59:58   ryangjchandler/blade-capture-directive ................................ DONE
2024-10-04 07:59:58   spatie/laravel-permission ............................................. DONE
2024-10-04 07:59:58   stancl/tenancy ........................................................ DONE
2024-10-04 07:59:58   swalbrun/filament-regex-import ........................................ DONE
2024-10-04 07:59:58 
2024-10-04 07:59:59   'commit-msg' hook installed successfully
2024-10-04 07:59:59   'pre-push' hook installed successfully
2024-10-04 07:59:59   'pre-commit' hook installed successfully
2024-10-04 07:59:59   'prepare-commit-msg' hook installed successfully
2024-10-04 07:59:59   'post-commit' hook installed successfully
2024-10-04 07:59:59   'post-merge' hook installed successfully
2024-10-04 07:59:59   'post-checkout' hook installed successfully
2024-10-04 07:59:59   'post-rewrite' hook installed successfully
2024-10-04 08:00:09 
2024-10-04 08:00:09    INFO  Clearing cached bootstrap files.  
2024-10-04 08:00:09 
2024-10-04 08:00:09   events ........................................................... 25ms DONE
2024-10-04 08:00:09   views ............................................................ 45ms DONE
2024-10-04 08:00:09   cache ............................................................ 19ms DONE
2024-10-04 08:00:09   route ............................................................. 7ms DONE
2024-10-04 08:00:09   config ............................................................ 5ms DONE
2024-10-04 08:00:09   compiled ......................................................... 35ms DONE
2024-10-04 08:00:09 
2024-10-04 08:00:09 Migrating and seeding
2024-10-04 08:00:20 
2024-10-04 08:00:20    INFO  Application key set successfully.  
2024-10-04 08:00:20 
2024-10-04 08:00:29 
2024-10-04 08:00:29   Dropping all tables ............................................. 366ms DONE
2024-10-04 08:00:29 
2024-10-04 08:00:29    INFO  Preparing database.  
2024-10-04 08:00:29 
2024-10-04 08:00:29   Creating migration table ......................................... 42ms DONE
2024-10-04 08:00:29 
2024-10-04 08:00:29    INFO  Loading stored database schemas.  
2024-10-04 08:00:29 
2024-10-04 08:00:30   database/schema/mysql-schema.sql ................................ 588ms DONE
2024-10-04 08:00:30 
2024-10-04 08:00:30    INFO  Nothing to migrate.  
2024-10-04 08:00:30 
2024-10-04 08:00:30    INFO  Seeding database.  
2024-10-04 08:00:30 
2024-10-04 08:00:30   Database\Seeders\LocalDevelopmentSeeder ............................ RUNNING  
2024-10-04 08:00:30   Database\Seeders\LocalDevelopmentSeeder ..................... 579.90 ms DONE  
2024-10-04 08:00:30 
2024-10-04 08:00:41 Successfully generated Permissions & Policies for:
2024-10-04 08:00:41 +---+-------------+--------------------------+-----------------------------------+
2024-10-04 08:00:41 | # | Resource    | Policy                   | Permissions                       |
2024-10-04 08:00:41 +---+-------------+--------------------------+-----------------------------------+
2024-10-04 08:00:41 | 1 | BidderRound | BidderRoundPolicy.php ✅ | view_bidder::round,               |
2024-10-04 08:00:41 |   |             |                          | view_any_bidder::round,           |
2024-10-04 08:00:41 |   |             |                          | create_bidder::round,             |
2024-10-04 08:00:41 |   |             |                          | update_bidder::round,             |
2024-10-04 08:00:41 |   |             |                          | restore_bidder::round,            |
2024-10-04 08:00:41 |   |             |                          | restore_any_bidder::round,        |
2024-10-04 08:00:41 |   |             |                          | replicate_bidder::round,          |
2024-10-04 08:00:41 |   |             |                          | reorder_bidder::round,            |
2024-10-04 08:00:41 |   |             |                          | delete_bidder::round,             |
2024-10-04 08:00:41 |   |             |                          | delete_any_bidder::round,         |
2024-10-04 08:00:41 |   |             |                          | force_delete_bidder::round,       |
2024-10-04 08:00:41 |   |             |                          | force_delete_any_bidder::round ✅ |
2024-10-04 08:00:41 | 2 | Role        | RolePolicy.php ✅        | view_role,                        |
2024-10-04 08:00:41 |   |             |                          | view_any_role,                    |
2024-10-04 08:00:41 |   |             |                          | create_role,                      |
2024-10-04 08:00:41 |   |             |                          | update_role,                      |
2024-10-04 08:00:41 |   |             |                          | delete_role,                      |
2024-10-04 08:00:41 |   |             |                          | delete_any_role ✅                |
2024-10-04 08:00:41 | 3 | Topic       | TopicPolicy.php ✅       | view_topic,                       |
2024-10-04 07:48:02    4/206 [>---------------------------]   1%
2024-10-04 07:48:03   22/206 [==>-------------------------]  10%
2024-10-04 07:48:04   43/206 [=====>----------------------]  20%
2024-10-04 07:48:05   62/206 [========>-------------------]  30%
2024-10-04 07:48:05   82/206 [===========>----------------]  39%
2024-10-04 07:48:06   86/206 [===========>----------------]  41%
2024-10-04 07:48:07  103/206 [==============>-------------]  50%
2024-10-04 07:48:08  126/206 [=================>----------]  61%
2024-10-04 07:48:08  143/206 [===================>--------]  69%
2024-10-04 07:48:09  146/206 [===================>--------]  70%
2024-10-04 07:48:10  157/206 [=====================>------]  76%
2024-10-04 07:48:11  165/206 [======================>-----]  80%
2024-10-04 07:48:12  189/206 [=========================>--]  91%
2024-10-04 07:48:12  205/206 [===========================>]  99%
2024-10-04 07:48:12  206/206 [============================] 100%
2024-10-04 07:48:12   - Installing pestphp/pest-plugin (v2.0.1): Extracting archive
2024-10-04 07:48:13   - Installing openspout/openspout (v4.14.0): Extracting archive
2024-10-04 07:48:13   - Installing voku/portable-ascii (2.0.1): Extracting archive
2024-10-04 07:48:13   - Installing symfony/polyfill-php80 (v1.27.0): Extracting archive
2024-10-04 07:48:13   - Installing symfony/polyfill-mbstring (v1.27.0): Extracting archive
2024-10-04 07:48:13   - Installing symfony/polyfill-ctype (v1.27.0): Extracting archive
2024-10-04 07:48:13   - Installing phpoption/phpoption (1.9.1): Extracting archive
2024-10-04 07:48:13   - Installing graham-campbell/result-type (v1.1.1): Extracting archive
2024-10-04 07:48:13   - Installing vlucas/phpdotenv (v5.5.0): Extracting archive
2024-10-04 07:48:13   - Installing symfony/css-selector (v6.3.0): Extracting archive
2024-10-04 07:48:13   - Installing tijsverkoyen/css-to-inline-styles (2.2.6): Extracting archive
2024-10-04 07:48:13   - Installing symfony/var-dumper (v6.3.0): Extracting archive
2024-10-04 07:48:13   - Installing symfony/polyfill-uuid (v1.27.0): Extracting archive
2024-10-04 07:48:13   - Installing symfony/uid (v6.3.0): Extracting archive
2024-10-04 07:48:13   - Installing symfony/routing (v6.3.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/process (v6.3.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/polyfill-php72 (v1.27.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/polyfill-intl-normalizer (v1.27.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/polyfill-intl-idn (v1.27.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/mime (v6.3.0): Extracting archive
2024-10-04 07:48:14   - Installing psr/container (2.0.2): Extracting archive
2024-10-04 07:48:14   - Installing symfony/service-contracts (v3.3.0): Extracting archive
2024-10-04 07:48:14   - Installing psr/event-dispatcher (1.0.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/event-dispatcher-contracts (v3.3.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/event-dispatcher (v6.3.0): Extracting archive
2024-10-04 07:48:14   - Installing psr/log (3.0.0): Extracting archive
2024-10-04 07:48:14   - Installing doctrine/lexer (3.0.0): Extracting archive
2024-10-04 07:48:14   - Installing egulias/email-validator (4.0.1): Extracting archive
2024-10-04 07:48:14   - Installing symfony/mailer (v6.3.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/polyfill-php83 (v1.27.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/deprecation-contracts (v3.3.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/http-foundation (v6.3.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/error-handler (v6.3.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/http-kernel (v6.3.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/finder (v6.3.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/polyfill-intl-grapheme (v1.27.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/string (v6.3.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/console (v6.3.0): Extracting archive
2024-10-04 07:48:14   - Installing ramsey/collection (2.0.0): Extracting archive
2024-10-04 07:48:14   - Installing brick/math (0.11.0): Extracting archive
2024-10-04 07:48:14   - Installing ramsey/uuid (4.7.4): Extracting archive
2024-10-04 07:48:14   - Installing psr/simple-cache (3.0.0): Extracting archive
2024-10-04 07:48:14   - Installing nunomaduro/termwind (v1.15.1): Extracting archive
2024-10-04 07:48:14   - Installing symfony/translation-contracts (v3.3.0): Extracting archive
2024-10-04 07:48:14   - Installing symfony/translation (v6.3.0): Extracting archive
2024-10-04 07:48:14   - Installing nesbot/carbon (2.67.0): Extracting archive
2024-10-04 07:48:14   - Installing monolog/monolog (3.3.1): Extracting archive
2024-10-04 07:48:14   - Installing league/mime-type-detection (1.11.0): Extracting archive
2024-10-04 07:48:14   - Installing league/flysystem (3.15.1): Extracting archive
2024-10-04 07:48:14   - Installing league/flysystem-local (3.15.0): Extracting archive
2024-10-04 07:48:14   - Installing nette/utils (v4.0.0): Extracting archive
2024-10-04 07:48:14   - Installing nette/schema (v1.2.3): Extracting archive
2024-10-04 07:48:15   - Installing dflydev/dot-access-data (v3.0.2): Extracting archive
2024-10-04 07:48:15   - Installing league/config (v1.2.0): Extracting archive
2024-10-04 07:48:15   - Installing league/commonmark (2.4.0): Extracting archive
2024-10-04 07:48:15   - Installing laravel/serializable-closure (v1.3.0): Extracting archive
2024-10-04 07:48:15   - Installing guzzlehttp/uri-template (v1.0.1): Extracting archive
2024-10-04 07:48:15   - Installing fruitcake/php-cors (v1.2.0): Extracting archive
2024-10-04 07:48:15   - Installing webmozart/assert (1.11.0): Extracting archive
2024-10-04 07:48:15   - Installing dragonmantank/cron-expression (v3.3.2): Extracting archive
2024-10-04 07:48:15   - Installing doctrine/inflector (2.0.6): Extracting archive
2024-10-04 07:48:15   - Installing laravel/framework (v10.13.2): Extracting archive
2024-10-04 07:48:15   - Installing spatie/simple-excel (3.2.0): Extracting archive
2024-10-04 07:48:15   - Installing spatie/laravel-package-tools (1.15.0): Extracting archive
2024-10-04 07:48:15   - Installing spatie/invade (1.1.1): Extracting archive
2024-10-04 07:48:15   - Installing livewire/livewire (v2.12.3): Extracting archive
2024-10-04 07:48:15   - Installing masterminds/html5 (2.8.0): Extracting archive
2024-10-04 07:48:15   - Installing league/uri-parser (1.4.1): Extracting archive
2024-10-04 07:48:15   - Installing tgalopin/html-sanitizer (1.5.0): Extracting archive
2024-10-04 07:48:15   - Installing ryangjchandler/blade-capture-directive (v0.3.0): Extracting archive
2024-10-04 07:48:15   - Installing filament/support (v2.17.46): Extracting archive
2024-10-04 07:48:15   - Installing blade-ui-kit/blade-icons (1.5.1): Extracting archive
2024-10-04 07:48:15   - Installing blade-ui-kit/blade-heroicons (1.4.0): Extracting archive
2024-10-04 07:48:15   - Installing filament/notifications (v2.17.46): Extracting archive
2024-10-04 07:48:15   - Installing danharrin/date-format-converter (v0.3.0): Extracting archive
2024-10-04 07:48:15   - Installing filament/forms (v2.17.46): Extracting archive
2024-10-04 07:48:15   - Installing akaunting/laravel-money (4.0.1): Extracting archive
2024-10-04 07:48:15   - Installing filament/tables (v2.17.46): Extracting archive
2024-10-04 07:48:15   - Installing sabberworm/php-css-parser (8.4.0): Extracting archive
2024-10-04 07:48:15   - Installing phenx/php-svg-lib (0.5.0): Extracting archive
2024-10-04 07:48:15   - Installing phenx/php-font-lib (0.5.4): Extracting archive
2024-10-04 07:48:15   - Installing dompdf/dompdf (v2.0.3): Extracting archive
2024-10-04 07:48:15   - Installing barryvdh/laravel-dompdf (v2.0.1): Extracting archive
2024-10-04 07:48:15   - Installing alperenersoy/filament-export (v0.2.9): Extracting archive
2024-10-04 07:48:15   - Installing phpstan/phpdoc-parser (1.22.0): Extracting archive
2024-10-04 07:48:15   - Installing phpdocumentor/reflection-common (2.2.0): Extracting archive
2024-10-04 07:48:15   - Installing doctrine/deprecations (v1.1.1): Extracting archive
2024-10-04 07:48:15   - Installing phpdocumentor/type-resolver (1.7.2): Extracting archive
2024-10-04 07:48:15   - Installing nikic/php-parser (v4.15.5): Extracting archive
2024-10-04 07:48:15   - Installing psr/cache (3.0.0): Extracting archive
2024-10-04 07:48:15   - Installing doctrine/event-manager (2.0.0): Extracting archive
2024-10-04 07:48:15   - Installing doctrine/cache (2.2.0): Extracting archive
2024-10-04 07:48:15   - Installing doctrine/dbal (3.6.3): Extracting archive
2024-10-04 07:48:15   - Installing composer/pcre (3.1.0): Extracting archive
2024-10-04 07:48:15   - Installing composer/class-map-generator (1.0.0): Extracting archive
2024-10-04 07:48:15   - Installing barryvdh/reflection-docblock (v2.1.0): Extracting archive
2024-10-04 07:48:15   - Installing barryvdh/laravel-ide-helper (v2.13.0): Extracting archive
2024-10-04 07:48:15   - Installing laminas/laminas-code (4.11.0): Extracting archive
2024-10-04 07:48:15   - Installing bensampo/laravel-enum (v6.3.3): Extracting archive
2024-10-04 07:48:15   - Installing spatie/laravel-permission (5.10.1): Extracting archive
2024-10-04 07:48:15   - Installing danharrin/livewire-rate-limiting (v1.1.0): Extracting archive
2024-10-04 07:48:15   - Installing filament/filament (v2.17.46): Extracting archive
2024-10-04 07:48:15   - Installing bezhansalleh/filament-shield (2.4.7): Extracting archive
2024-10-04 07:48:15   - Installing bradyrenting/filament-passwordless (1.1.0): Extracting archive
2024-10-04 07:48:15   - Installing sebastian/environment (6.0.1): Extracting archive
2024-10-04 07:48:15   - Installing sebastian/version (4.0.1): Extracting archive
2024-10-04 07:48:15   - Installing sebastian/type (4.0.0): Extracting archive
2024-10-04 07:48:16   - Installing sebastian/recursion-context (5.0.0): Extracting archive
2024-10-04 07:48:16   - Installing sebastian/object-reflector (3.0.0): Extracting archive
2024-10-04 07:48:16   - Installing sebastian/object-enumerator (5.0.0): Extracting archive
2024-10-04 07:48:16   - Installing sebastian/global-state (6.0.0): Extracting archive
2024-10-04 07:48:16   - Installing sebastian/exporter (5.0.0): Extracting archive
2024-10-04 07:48:16   - Installing sebastian/diff (5.0.3): Extracting archive
2024-10-04 07:48:16   - Installing sebastian/comparator (5.0.0): Extracting archive
2024-10-04 07:48:16   - Installing sebastian/code-unit (2.0.0): Extracting archive
2024-10-04 07:48:16   - Installing sebastian/cli-parser (2.0.0): Extracting archive
2024-10-04 07:48:16   - Installing phpunit/php-timer (6.0.0): Extracting archive
2024-10-04 07:48:16   - Installing phpunit/php-text-template (3.0.0): Extracting archive
2024-10-04 07:48:16   - Installing phpunit/php-invoker (4.0.0): Extracting archive
2024-10-04 07:48:16   - Installing phpunit/php-file-iterator (4.0.2): Extracting archive
2024-10-04 07:48:16   - Installing theseer/tokenizer (1.2.1): Extracting archive
2024-10-04 07:48:16   - Installing sebastian/lines-of-code (2.0.0): Extracting archive
2024-10-04 07:48:16   - Installing sebastian/complexity (3.0.0): Extracting archive
2024-10-04 07:48:16   - Installing sebastian/code-unit-reverse-lookup (3.0.0): Extracting archive
2024-10-04 07:48:16   - Installing phpunit/php-code-coverage (10.1.2): Extracting archive
2024-10-04 07:48:16   - Installing phar-io/version (3.2.1): Extracting archive
2024-10-04 07:48:16   - Installing phar-io/manifest (2.0.3): Extracting archive
2024-10-04 07:48:16   - Installing myclabs/deep-copy (1.11.1): Extracting archive
2024-10-04 07:48:16   - Installing phpunit/phpunit (10.2.1): Extracting archive
2024-10-04 07:48:16   - Installing jean85/pretty-package-versions (2.0.5): Extracting archive
2024-10-04 07:48:16   - Installing fidry/cpu-core-counter (0.5.1): Extracting archive
2024-10-04 07:48:16   - Installing brianium/paratest (v7.1.4): Extracting archive
2024-10-04 07:48:16   - Installing symfony/filesystem (v6.3.0): Extracting archive
2024-10-04 07:48:16   - Installing sebastianfeldmann/cli (3.4.1): Extracting archive
2024-10-04 07:48:16   - Installing sebastianfeldmann/git (3.8.9): Extracting archive
2024-10-04 07:48:16   - Installing sebastianfeldmann/camino (0.9.5): Extracting archive
2024-10-04 07:48:16   - Installing captainhook/captainhook (5.16.4): Extracting archive
2024-10-04 07:48:16   - Installing codeat3/blade-codicons (1.32.2): Extracting archive
2024-10-04 07:48:16   - Installing codeat3/blade-iconpark (1.5.1): Extracting archive
2024-10-04 07:48:16   - Installing composer/ca-bundle (1.3.6): Extracting archive
2024-10-04 07:48:16   - Installing composer/metadata-minifier (1.0.0): Extracting archive
2024-10-04 07:48:16   - Installing composer/spdx-licenses (1.5.7): Extracting archive
2024-10-04 07:48:16   - Installing davidhsianturi/blade-bootstrap-icons (v1.4.0): Extracting archive
2024-10-04 07:48:16   - Installing fakerphp/faker (v1.22.0): Extracting archive
2024-10-04 07:48:16   - Installing filp/whoops (2.15.2): Extracting archive
2024-10-04 07:48:16   - Installing psr/http-message (1.1): Extracting archive
2024-10-04 07:48:16   - Installing psr/http-client (1.0.2): Extracting archive
2024-10-04 07:48:16   - Installing ralouphie/getallheaders (3.0.3): Extracting archive
2024-10-04 07:48:16   - Installing psr/http-factory (1.0.2): Extracting archive
2024-10-04 07:48:16   - Installing guzzlehttp/psr7 (2.5.0): Extracting archive
2024-10-04 07:48:16   - Installing guzzlehttp/promises (2.0.0): Extracting archive
2024-10-04 07:48:16   - Installing guzzlehttp/guzzle (7.7.0): Extracting archive
2024-10-04 07:48:16   - Installing justinrainbow/json-schema (5.2.12): Extracting archive
2024-10-04 07:48:16   - Installing laravel/pint (v1.10.2): Extracting archive
2024-10-04 07:48:16   - Installing symfony/yaml (v6.3.0): Extracting archive
2024-10-04 07:48:16   - Installing laravel/sail (v1.22.0): Extracting archive
2024-10-04 07:48:16   - Installing psy/psysh (v0.11.18): Extracting archive
2024-10-04 07:48:16   - Installing laravel/tinker (v2.8.1): Extracting archive
2024-10-04 07:48:16   - Installing hamcrest/hamcrest-php (v2.0.1): Extracting archive
2024-10-04 07:48:16   - Installing mockery/mockery (1.6.2): Extracting archive
2024-10-04 07:48:16   - Installing myclabs/php-enum (1.8.4): Extracting archive
2024-10-04 07:48:16   - Installing opis/string (2.0.1): Extracting archive
2024-10-04 07:48:16   - Installing opis/uri (1.1.0): Extracting archive
2024-10-04 07:48:16   - Installing phpdocumentor/reflection-docblock (5.3.0): Extracting archive
2024-10-04 07:48:16   - Installing ta-tikoma/phpunit-architecture-test (0.7.3): Extracting archive
2024-10-04 07:48:16   - Installing nunomaduro/collision (v7.5.2): Extracting archive
2024-10-04 07:48:16   - Installing pestphp/pest-plugin-arch (v2.2.0): Extracting archive
2024-10-04 07:48:16   - Installing pestphp/pest (v2.6.3): Extracting archive
2024-10-04 07:48:16   - Installing pestphp/pest-plugin-livewire (v2.0.0): Extracting archive
2024-10-04 07:48:16   - Installing symfony/var-exporter (v6.3.0): Extracting archive
2024-10-04 07:48:16   - Installing symfony/dependency-injection (v6.3.0): Extracting archive
2024-10-04 07:48:16   - Installing symfony/config (v6.3.0): Extracting archive
2024-10-04 07:48:16   - Installing pdepend/pdepend (2.14.0): Extracting archive
2024-10-04 07:48:17   - Installing composer/xdebug-handler (3.0.3): Extracting archive
2024-10-04 07:48:17   - Installing phpmd/phpmd (2.13.0): Extracting archive
2024-10-04 07:48:17   - Installing markbaker/matrix (3.0.1): Extracting archive
2024-10-04 07:48:17   - Installing markbaker/complex (3.0.2): Extracting archive
2024-10-04 07:48:17   - Installing maennchen/zipstream-php (v2.4.0): Extracting archive
2024-10-04 07:48:17   - Installing ezyang/htmlpurifier (v4.16.0): Extracting archive
2024-10-04 07:48:17   - Installing phpoffice/phpspreadsheet (1.28.0): Extracting archive
2024-10-04 07:48:17   - Installing opis/json-schema (2.3.0): Extracting archive
2024-10-04 07:48:17   - Installing jawira/case-converter (v3.5.1): Extracting archive
2024-10-04 07:48:17   - Installing symfony/polyfill-php81 (v1.27.0): Extracting archive
2024-10-04 07:48:17   - Installing symfony/polyfill-php73 (v1.27.0): Extracting archive
2024-10-04 07:48:17   - Installing seld/signal-handler (2.0.1): Extracting archive
2024-10-04 07:48:17   - Installing seld/phar-utils (1.2.1): Extracting archive
2024-10-04 07:48:17   - Installing seld/jsonlint (1.10.0): Extracting archive
2024-10-04 07:48:17   - Installing react/promise (v2.10.0): Extracting archive
2024-10-04 07:48:17   - Installing composer/semver (3.3.2): Extracting archive
2024-10-04 07:48:17   - Installing composer/composer (2.5.8): Extracting archive
2024-10-04 07:48:17   - Installing ramsey/conventional-commits (1.5.0): Extracting archive
2024-10-04 07:48:17   - Installing squizlabs/php_codesniffer (3.7.2): Extracting archive
2024-10-04 07:48:17   - Installing stancl/virtualcolumn (v1.3.1): Extracting archive
2024-10-04 07:48:17   - Installing stancl/jobpipeline (v1.6.2): Extracting archive
2024-10-04 07:48:17   - Installing facade/ignition-contracts (1.0.2): Extracting archive
2024-10-04 07:48:17   - Installing stancl/tenancy (v3.7.0): Extracting archive
2024-10-04 07:48:17   - Installing maatwebsite/excel (3.1.48): Extracting archive
2024-10-04 07:48:17   - Installing swalbrun/filament-regex-import (0.2.1): Extracting archive
2024-10-04 07:48:17   - Installing spatie/array-to-xml (3.1.6): Extracting archive
2024-10-04 07:48:17   - Installing netresearch/jsonmapper (v4.2.0): Extracting archive
2024-10-04 07:48:17   - Installing felixfbecker/language-server-protocol (v1.5.2): Extracting archive
2024-10-04 07:48:17   - Installing felixfbecker/advanced-json-rpc (v3.2.1): Extracting archive
2024-10-04 07:48:17   - Installing dnoegel/php-xdg-base-dir (v0.1.1): Extracting archive
2024-10-04 07:48:17   - Installing amphp/amp (v2.6.2): Extracting archive
2024-10-04 07:48:17   - Installing amphp/byte-stream (v1.8.1): Extracting archive
2024-10-04 07:48:17   - Installing vimeo/psalm (5.12.0): Extracting archive
2024-10-04 07:48:23    0/205 [>---------------------------]   0%
2024-10-04 07:48:25    8/205 [=>--------------------------]   3%
2024-10-04 07:48:27    9/205 [=>--------------------------]   4%
2024-10-04 07:48:30   10/205 [=>--------------------------]   4%
2024-10-04 07:48:33   15/205 [==>-------------------------]   7%
2024-10-04 07:48:36   20/205 [==>-------------------------]   9%
2024-10-04 07:48:39   25/205 [===>------------------------]  12%
2024-10-04 07:48:42   29/205 [===>------------------------]  14%
2024-10-04 07:48:45   33/205 [====>-----------------------]  16%
2024-10-04 07:48:48   38/205 [=====>----------------------]  18%
2024-10-04 07:48:50   42/205 [=====>----------------------]  20%
2024-10-04 07:48:53   45/205 [======>---------------------]  21%
2024-10-04 07:48:55   50/205 [======>---------------------]  24%
2024-10-04 07:48:57   53/205 [=======>--------------------]  25%
2024-10-04 07:49:00   57/205 [=======>--------------------]  27%
2024-10-04 07:49:02   60/205 [========>-------------------]  29%
2024-10-04 07:49:03   63/205 [========>-------------------]  30%
2024-10-04 07:49:05   64/205 [========>-------------------]  31%
2024-10-04 07:49:06   65/205 [========>-------------------]  31%
2024-10-04 07:49:08   66/205 [=========>------------------]  32%
2024-10-04 07:49:10   67/205 [=========>------------------]  32%
2024-10-04 07:49:14   68/205 [=========>------------------]  33%
2024-10-04 07:49:15   69/205 [=========>------------------]  33%
2024-10-04 07:49:16   70/205 [=========>------------------]  34%
2024-10-04 07:49:18   71/205 [=========>------------------]  34%
2024-10-04 07:49:19   72/205 [=========>------------------]  35%
2024-10-04 07:49:20   73/205 [=========>------------------]  35%
2024-10-04 07:49:22   74/205 [==========>-----------------]  36%
2024-10-04 07:49:24   75/205 [==========>-----------------]  36%
2024-10-04 07:49:26   76/205 [==========>-----------------]  37%
2024-10-04 07:49:27   77/205 [==========>-----------------]  37%
2024-10-04 07:49:29   78/205 [==========>-----------------]  38%
2024-10-04 07:49:30   79/205 [==========>-----------------]  38%
2024-10-04 07:49:32   80/205 [==========>-----------------]  39%
2024-10-04 07:49:33   82/205 [===========>----------------]  40%
2024-10-04 07:49:34   83/205 [===========>----------------]  40%
2024-10-04 07:49:36   84/205 [===========>----------------]  40%
2024-10-04 07:49:37   85/205 [===========>----------------]  41%
2024-10-04 07:49:39   87/205 [===========>----------------]  42%
2024-10-04 07:49:40   88/205 [============>---------------]  42%
2024-10-04 07:49:41   89/205 [============>---------------]  43%
2024-10-04 07:49:42   91/205 [============>---------------]  44%
2024-10-04 07:49:43   92/205 [============>---------------]  44%
2024-10-04 07:49:44   93/205 [============>---------------]  45%
2024-10-04 07:49:46   94/205 [============>---------------]  45%
2024-10-04 07:49:47   95/205 [============>---------------]  46%
2024-10-04 07:49:48   96/205 [=============>--------------]  46%
2024-10-04 07:49:50   98/205 [=============>--------------]  47%
2024-10-04 07:49:52  100/205 [=============>--------------]  48%
2024-10-04 07:49:52  102/205 [=============>--------------]  49%
2024-10-04 07:49:54  103/205 [==============>-------------]  50%
2024-10-04 07:49:56  105/205 [==============>-------------]  51%
2024-10-04 07:49:58  108/205 [==============>-------------]  52%
2024-10-04 07:49:59  111/205 [===============>------------]  54%
2024-10-04 07:50:02  114/205 [===============>------------]  55%
2024-10-04 07:50:04  118/205 [================>-----------]  57%
2024-10-04 07:50:05  121/205 [================>-----------]  59%
2024-10-04 07:50:06  122/205 [================>-----------]  59%
2024-10-04 07:50:09  123/205 [================>-----------]  60%
2024-10-04 07:50:10  127/205 [=================>----------]  61%
2024-10-04 07:50:12  129/205 [=================>----------]  62%
2024-10-04 07:50:13  131/205 [=================>----------]  63%
2024-10-04 07:50:15  132/205 [==================>---------]  64%
2024-10-04 07:50:16  134/205 [==================>---------]  65%
2024-10-04 07:50:17  135/205 [==================>---------]  65%
2024-10-04 07:50:18  136/205 [==================>---------]  66%
2024-10-04 07:50:19  137/205 [==================>---------]  66%
2024-10-04 07:50:21  138/205 [==================>---------]  67%
2024-10-04 07:50:23  140/205 [===================>--------]  68%
2024-10-04 07:50:24  141/205 [===================>--------]  68%
2024-10-04 07:50:26  142/205 [===================>--------]  69%
2024-10-04 07:50:30  143/205 [===================>--------]  69%
2024-10-04 07:50:31  145/205 [===================>--------]  70%
2024-10-04 07:50:32  146/205 [===================>--------]  71%
2024-10-04 07:50:33  147/205 [====================>-------]  71%
2024-10-04 07:50:34  148/205 [====================>-------]  72%
2024-10-04 07:50:38  149/205 [====================>-------]  72%
2024-10-04 07:50:40  150/205 [====================>-------]  73%
2024-10-04 07:50:41  151/205 [====================>-------]  73%
2024-10-04 07:50:42  152/205 [====================>-------]  74%
2024-10-04 07:50:47  153/205 [====================>-------]  74%
2024-10-04 07:50:48  154/205 [=====================>------]  75%
2024-10-04 07:50:49  156/205 [=====================>------]  76%
2024-10-04 07:50:51  157/205 [=====================>------]  76%
2024-10-04 07:50:53  158/205 [=====================>------]  77%
2024-10-04 07:50:54  161/205 [=====================>------]  78%
2024-10-04 07:50:59  162/205 [======================>-----]  79%
2024-10-04 07:51:01  163/205 [======================>-----]  79%
2024-10-04 07:51:05  164/205 [======================>-----]  80%
2024-10-04 07:51:06  165/205 [======================>-----]  80%
2024-10-04 07:51:07  166/205 [======================>-----]  80%
2024-10-04 07:51:08  167/205 [======================>-----]  81%
2024-10-04 07:51:10  168/205 [======================>-----]  81%
2024-10-04 07:51:11  169/205 [=======================>----]  82%
2024-10-04 07:51:15  170/205 [=======================>----]  82%
2024-10-04 07:51:18  171/205 [=======================>----]  83%
2024-10-04 07:51:19  172/205 [=======================>----]  83%
2024-10-04 07:51:21  174/205 [=======================>----]  84%
2024-10-04 07:51:22  176/205 [========================>---]  85%
2024-10-04 07:51:23  178/205 [========================>---]  86%
2024-10-04 07:51:24  179/205 [========================>---]  87%
2024-10-04 07:51:26  180/205 [========================>---]  87%
2024-10-04 07:51:31  181/205 [========================>---]  88%
2024-10-04 07:51:32  183/205 [========================>---]  89%
2024-10-04 07:51:33  185/205 [=========================>--]  90%
2024-10-04 07:51:36  186/205 [=========================>--]  90%
2024-10-04 07:51:37  187/205 [=========================>--]  91%
2024-10-04 07:51:38  188/205 [=========================>--]  91%
2024-10-04 07:51:39  189/205 [=========================>--]  92%
2024-10-04 07:51:41  191/205 [==========================>-]  93%
2024-10-04 07:51:42  192/205 [==========================>-]  93%
2024-10-04 07:51:45  193/205 [==========================>-]  94%
2024-10-04 07:51:46  195/205 [==========================>-]  95%
2024-10-04 07:51:47  197/205 [==========================>-]  96%
2024-10-04 07:51:52  199/205 [===========================>]  97%
2024-10-04 07:52:04  200/205 [===========================>]  97%
2024-10-04 07:52:09  201/205 [===========================>]  98%
2024-10-04 07:53:00  202/205 [===========================>]  98%
2024-10-04 07:53:08  203/205 [===========================>]  99%
2024-10-04 07:53:23  204/205 [===========================>]  99%
2024-10-04 07:53:23  205/205 [============================] 100%
2024-10-04 07:53:24 Package league/uri-parser is abandoned, you should avoid using it. No replacement was suggested.
2024-10-04 07:53:24 Package tgalopin/html-sanitizer is abandoned, you should avoid using it. Use symfony/html-sanitizer instead.
2024-10-04 07:53:24 Generating optimized autoload files
2024-10-04 07:59:45 > Illuminate\Foundation\ComposerScripts::postAutoloadDump
2024-10-04 07:59:46 > @php artisan package:discover --ansi
2024-10-04 07:59:46 PHP Warning:  Failed loading Zend extension 'xdebug.so' (tried: /usr/lib/php/20210902/xdebug.so (/usr/lib/php/20210902/xdebug.so: cannot open shared object file: No such file or directory), /usr/lib/php/20210902/xdebug.so.so (/usr/lib/php/20210902/xdebug.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
2024-10-04 07:59:58 > vendor/bin/captainhook install -f -s
2024-10-04 07:59:58 PHP Warning:  Failed loading Zend extension 'xdebug.so' (tried: /usr/lib/php/20210902/xdebug.so (/usr/lib/php/20210902/xdebug.so: cannot open shared object file: No such file or directory), /usr/lib/php/20210902/xdebug.so.so (/usr/lib/php/20210902/xdebug.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
2024-10-04 07:59:59 137 packages you are using are looking for funding.
2024-10-04 07:59:59 Use the `composer fund` command to find out more!
2024-10-04 07:59:59 PHP Warning:  Failed loading Zend extension 'xdebug.so' (tried: /usr/lib/php/20210902/xdebug.so (/usr/lib/php/20210902/xdebug.so: cannot open shared object file: No such file or directory), /usr/lib/php/20210902/xdebug.so.so (/usr/lib/php/20210902/xdebug.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
2024-10-04 08:00:09 PHP Warning:  Failed loading Zend extension 'xdebug.so' (tried: /usr/lib/php/20210902/xdebug.so (/usr/lib/php/20210902/xdebug.so: cannot open shared object file: No such file or directory), /usr/lib/php/20210902/xdebug.so.so (/usr/lib/php/20210902/xdebug.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
2024-10-04 08:00:20 PHP Warning:  Failed loading Zend extension 'xdebug.so' (tried: /usr/lib/php/20210902/xdebug.so (/usr/lib/php/20210902/xdebug.so: cannot open shared object file: No such file or directory), /usr/lib/php/20210902/xdebug.so.so (/usr/lib/php/20210902/xdebug.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
2024-10-04 08:00:31 PHP Warning:  Failed loading Zend extension 'xdebug.so' (tried: /usr/lib/php/20210902/xdebug.so (/usr/lib/php/20210902/xdebug.so: cannot open shared object file: No such file or directory), /usr/lib/php/20210902/xdebug.so.so (/usr/lib/php/20210902/xdebug.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
2024-10-04 08:00:41 PHP Warning:  Failed loading Zend extension 'xdebug.so' (tried: /usr/lib/php/20210902/xdebug.so (/usr/lib/php/20210902/xdebug.so: cannot open shared object file: No such file or directory), /usr/lib/php/20210902/xdebug.so.so (/usr/lib/php/20210902/xdebug.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
2024-10-04 08:00:51 PHP Warning:  Failed loading Zend extension 'xdebug.so' (tried: /usr/lib/php/20210902/xdebug.so (/usr/lib/php/20210902/xdebug.so: cannot open shared object file: No such file or directory), /usr/lib/php/20210902/xdebug.so.so (/usr/lib/php/20210902/xdebug.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
2024-10-04 08:00:41 |   |             |                          | view_any_topic,                   |
2024-10-04 08:00:41 |   |             |                          | create_topic,                     |
2024-10-04 08:00:41 |   |             |                          | update_topic,                     |
2024-10-04 08:00:41 |   |             |                          | restore_topic,                    |
2024-10-04 08:00:41 |   |             |                          | restore_any_topic,                |
2024-10-04 08:00:41 |   |             |                          | replicate_topic,                  |
2024-10-04 08:00:41 |   |             |                          | reorder_topic,                    |
2024-10-04 08:00:41 |   |             |                          | delete_topic,                     |
2024-10-04 08:00:41 |   |             |                          | delete_any_topic,                 |
2024-10-04 08:00:41 |   |             |                          | force_delete_topic,               |
2024-10-04 08:00:41 |   |             |                          | force_delete_any_topic ✅         |
2024-10-04 08:00:41 | 4 | User        | UserPolicy.php ✅        | view_user,                        |
2024-10-04 08:00:41 |   |             |                          | view_any_user,                    |
2024-10-04 08:00:41 |   |             |                          | create_user,                      |
2024-10-04 08:00:41 |   |             |                          | update_user,                      |
2024-10-04 08:00:41 |   |             |                          | restore_user,                     |
2024-10-04 08:00:41 |   |             |                          | restore_any_user,                 |
2024-10-04 08:00:41 |   |             |                          | replicate_user,                   |
2024-10-04 08:00:41 |   |             |                          | reorder_user,                     |
2024-10-04 08:00:41 |   |             |                          | delete_user,                      |
2024-10-04 08:00:41 |   |             |                          | delete_any_user,                  |
2024-10-04 08:00:41 |   |             |                          | force_delete_user,                |
2024-10-04 08:00:41 |   |             |                          | force_delete_any_user ✅          |
2024-10-04 08:00:41 +---+-------------+--------------------------+-----------------------------------+
2024-10-04 08:00:41 Successfully generated Page Permissions for:
2024-10-04 08:00:41 +---+------------+-----------------+
2024-10-04 08:00:41 | # | Page       | Permission      |
2024-10-04 08:00:41 +---+------------+-----------------+
2024-10-04 08:00:41 | 1 | OfferPage  | page_OfferPage  |
2024-10-04 08:00:41 | 2 | ImportPage | page_ImportPage |
2024-10-04 08:00:41 +---+------------+-----------------+
2024-10-04 08:00:41 Successfully generated Widget Permissions for:
2024-10-04 08:00:41 +---+----------------------+-----------------------------+
2024-10-04 08:00:41 | # | Widget               | Permission                  |
2024-10-04 08:00:41 +---+----------------------+-----------------------------+
2024-10-04 08:00:41 | 1 | BidderRoundsOverview | widget_BidderRoundsOverview |
2024-10-04 08:00:41 | 2 | CommunityChart       | widget_CommunityChart       |
2024-10-04 08:00:41 +---+----------------------+-----------------------------+
2024-10-04 08:00:41 Permission & Policies are generated according to your config or passed options.
2024-10-04 08:00:41 Enjoy!
2024-10-04 08:00:51 
2024-10-04 08:00:51   Dropping all tables .............................................. 55ms FAIL
2024-10-04 08:00:51 
2024-10-04 08:00:51 In Connection.php line 795:
2024-10-04 08:00:51                                                                                
2024-10-04 08:00:51   SQLSTATE[HY000] [1049] Unknown database 'solawi_ut' (Connection: mysql, SQL  
2024-10-04 08:00:51   : SHOW FULL TABLES WHERE table_type = 'BASE TABLE')                          
2024-10-04 08:00:51                                                                                
2024-10-04 08:00:51 
2024-10-04 08:00:51 In Connector.php line 65:
2024-10-04 08:00:51                                                        
2024-10-04 08:00:51   SQLSTATE[HY000] [1049] Unknown database 'solawi_ut'  
2024-10-04 08:00:51                                                        
2024-10-04 08:00:51 
2024-10-04 08:01:01 Tenant: bar
2024-10-04 08:01:01    INFO  Seeding database.  
2024-10-04 08:01:01 
2024-10-04 08:01:01   Database\Seeders\LocalDevelopmentSeeder ............................ RUNNING  
2024-10-04 08:01:05   Database\Seeders\LocalDevelopmentSeeder ................... 4,004.45 ms DONE  
2024-10-04 08:01:05 
2024-10-04 08:01:05 Tenant: foo
2024-10-04 08:01:05    INFO  Seeding database.  
2024-10-04 08:01:05 
2024-10-04 08:01:05   Database\Seeders\LocalDevelopmentSeeder ............................ RUNNING  
2024-10-04 08:01:08   Database\Seeders\LocalDevelopmentSeeder ................... 3,099.04 ms DONE  
2024-10-04 08:01:08 
sWalbrun commented 1 month ago

Sieht auf den ersten Blick so aus, wie es aussehen sollte.

Das Einfügen des Patch hatte keine Auswirkungen? Was ist denn die Response auf diesen curl?

curl -X GET https://localhost/main/login -H "Accept: application/json" --insecure
Cruiser79 commented 1 month ago

Den Patch habe ich nicht probiert einzufügen, da du schriebst "Falls nicht, kannst du versuchen, " und der Container wurde ja mit Exit Code 0 beendet.

sWalbrun commented 1 month ago

Hatte ich blöd formuliert. Magst dus mal ausprobieren?

Cruiser79 commented 1 month ago

So, bin nun zum Ausprobieren gekommen. Bringt leider keine neuen Erkenntnisse. Hatte alle Container mit dem max_execution_time neu gebaut, aber ich bekomme immer noch die gleiche Meldung. Auf der Curl Aufruf bringt diese hervor

curl -X GET https://localhost/main/login -H "Accept: application/json" --insecure
{
    "message": "Maximum execution time of 30 seconds exceeded",
    "exception": "Symfony\\Component\\ErrorHandler\\Error\\FatalError",
    "file": "/app/vendor/symfony/finder/Iterator/SortableIterator.php",
    "line": 51,
    "trace": []