Skip to content

Table Service Integration: models, API, waiter POS views, tests, and documentation#135

Draft
Copilot wants to merge 15 commits intomainfrom
copilot/feature-table-service-integration
Draft

Table Service Integration: models, API, waiter POS views, tests, and documentation#135
Copilot wants to merge 15 commits intomainfrom
copilot/feature-table-service-integration

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Mar 13, 2026

Introduces Table Service mode for the POS app — waiters can take orders at tables, track patrons, manage fulfillment/payment states independently, and settle tabs.

Database & Models

  • Table model — belongs to Event, soft-deletable, unique (event_id, table_number). Includes bulkGenerate() that increments from highest active table number.
  • Patron model — belongs to Event, optionally linked to Table. Tracks outstanding balance across unpaid orders.
  • Order status split — adds payment_status (unpaid/paid/voided) alongside existing fulfillment status. New statuses: prepared, delivered. Default payment_status = 'paid' preserves backward compat.
  • allow_unpaid_table_orders on Event — controls whether waiters can open tabs.

API

  • TableController (Shared) — full CRUD + POST /events/{id}/tables/generate for bulk creation
  • PatronController (Shared) — CRUD with outstanding_balance and has_unpaid_orders computed fields
  • OrderResourceDefinition updated with payment_status, patron_id, table_id (all filterable)
  • Both EventResourceDefinition variants expose allow_unpaid_table_orders
  • Thin stubs in ManagementApi (full CRUD) and DeviceApi (read + create/edit)
  • Policies use $allowDevices = true for POS access

Business Logic

PatronAssignmentService implements the patron resolution algorithm:

// Named orders: match by name within 24h window
$patron = $service->resolvePatron($event, name: 'Alice');

// Anonymous table orders: reuse patron if unpaid tab exists, else create new
$patron = $service->resolvePatron($event, table: $table);

// Auto-create tables for unknown table numbers from remote orders
$table = $service->findOrCreateTable($event, tableNumber: 42);

Frontend

  • Table managementTables.vue (bulk generate, inline rename, delete) available in manage app only; not exposed in POS
  • TableService.vue component (pos/js/components/) — Isolated table service component containing the table grid, patron modal (with multi-step flow: patron selection → patron details), and order queue. Headquarters delegates to this component when table service mode is active.
  • Patron modal flow — Table click opens an XL modal at the patron selection step. Selecting or creating a patron transitions to the details view within the same modal (outstanding balance, order history, settle balance, new order form). "Back to patron list" returns to selection.
  • LiveSales reuse — New order form inside the patron modal uses the shared LiveSales component with patronId, tableId, and allowPayLater props, avoiding code duplication. Orders are created with correct patron/table context.
  • Pay Later in PaymentPopupPaymentService has allow_pay_later flag and payLater() method. When allow_unpaid_table_orders is true, PaymentPopup shows a "🕐 Pay later" button alongside cash/card/voucher options. Resolves with paymentType: 'pay-later', keeping payment_status: 'unpaid'. Flag is reset after each order.
  • Batch payment settlementPaymentService.orders() method handles payment for multiple unpaid orders in a single transaction, following the same payment popup flow as LiveSales (cash/card/voucher)
  • POS Settings — "Allow table service at this terminal" toggle, mutually exclusive with live orders and remote orders
  • Order queue — Filterable by device and status (prepared only), with actions to mark prepared/delivered/voided
  • Manage app retains standalone routes for tables, waiter dashboard, and patron detail for admin access

Tests

PHP Unit Tests (6 new test files, ~70 tests):

  • TableModelTest — model attributes, fillable, relationships, soft deletes
  • PatronModelTest — model attributes, fillable, relationships, methods
  • OrderStatusConstantsTest — new fulfillment/payment status constants and relationships
  • TablePolicyTest — 20 tests covering user/device/null authorization for all policy methods
  • PatronPolicyTest — 20 tests covering user/device/null authorization for all policy methods
  • PatronAssignmentServiceTest — service instantiation, constants, null/empty edge cases

JavaScript/Vitest Tests (3 new test files, 89 tests):

  • table-service-routes.test.js — 20 tests verifying POS has no standalone table service routes, manage app has all routes, client app has none
  • table-service-views.test.js — 26 tests verifying Headquarters integration (TableService component import), patron modal multi-step flow, LiveSales reuse with props, POS Events without standalone links, manage Events with table service links, Settings toggle, and PaymentPopup pay later support
  • table-service-services.test.js — 43 tests verifying TableService, PatronService, PaymentService batch orders() method, PaymentService pay later (allow_pay_later flag, payLater() method), SettingService allowTableService support, and shared view integrity

All 506 tests pass (203 PHPUnit + 271 Vitest + 32 Jest).

Documentation

  • .ai/table-service.md — comprehensive architecture documentation covering database schema, models, patron assignment algorithm, API endpoints, authorization policies, frontend component architecture (TableService.vue, LiveSales reuse, PaymentPopup pay later flow), patron modal multi-step flow, POS device settings, event settings, and offline considerations
Original prompt

This section details on the original issue you should resolve

<issue_title>Feature Specification: Table Service Integration</issue_title>
<issue_description># Feature Specification: Table Service Integration

App: drinks.catlab.eu
Role: Waiter-operated POS / Table Management
Status: Ready for Development

1. Objective

Implement a "Table Service" mode for the existing POS application, allowing waiters to take orders directly at tables via their mobile devices. This requires significant refactoring to introduce Table and Patron models, separate fulfillment from payment states, and update the order routing logic between the Bar POS and Waiter POS.

2. Database & Model Refactoring

2.1. Tables Model

  • Hierarchy: Tables belong directly to an Event. Each event starts with zero tables.

  • Properties: id, event_id, table_number (integer), name (localized string, e.g., "Table 1").

  • Deletions: Must utilize soft-deletion (deleted_at).

  • Generation Utility: Need an admin function to bulk-generate X tables.

  • Logic: It must query the highest current active (non-soft-deleted) table_number and increment intelligently to prevent duplicates.

  • Renaming: Single tables must be easily renameable by event admins.

=> If a remote order arrives with an unknown table number, create that table.

2.2. Patron Model

  • Hierarchy: A new Eloquent model linked to an Event. An Order belongsTo a Patron.
  • Properties: id, event_id, name (optional, primarily used by quiz software/remote name entry).

2.3. Order Status Split

The Order model must be refactored to separate the physical delivery of the drink from the financial settlement of the tab.

  • Fulfillment Status (status): pending -> prepared -> delivered. (Note: 'processed' is being renamed to 'delivered')
  • Payment Status (payment_status): unpaid, paid, voided.

=> Orders from the 'live' sales are always immediately delivered.

2.4 event.allow_unpaid_orders

Create a new field allow_unpaid_table_orders that determines if waiter can open a 'tab'.

3. Core Logic: Patron & Order Assignment

When a new order is received, the system must determine which Patron group owns it based on the following algorithm:

  1. Named Orders (Quiz App):
  • If a name is provided, search for an existing Patron with that name who has placed an order within the last X hours (duration configurable).
  • If found: Append the new order to this Patron (regardless of the table or paid/unpaid status).
  • If not found: Create a new Patron.
  1. Anonymous Orders (Table QR Scan):
  • Prerequisite: Only permitted if the event setting allow_unpaid_online_orders is true or if some kind of payment system is configured (currently only: a valid card alias is provided)
  • Check the last Patron assigned to the scanned Table.
  • If the last Patron has an UNPAID order: Append the new order to this existing Patron. (This ensures Waiter orders and QR orders merge seamlessly on the same unpaid tab).
  • If the last Patron's orders are all PAID: Create a new Patron group for this table. (We do not care about maintaining history across separate, settled sessions).

4. User Interfaces & Workflows

4.1. The Bar POS (Remote Orders Interface)

  • Visibility: Pending orders from table service appear here.
  • Action: When the bar finishes making the drinks, they click a button that marks the order as prepared (or delivered, depending on how the bar treats it locally, but it drops off their active screen).

4.2. The Waiter POS (Table Service Mode)

  • Device Configuration: POS can be toggled into "Table Service" mode.

  • Dashboard: Displays a list of all tables in the event + a "No Table" option.

  • Table Interaction:

  • Clicking a Table shows active Patrons assigned to it.

  • Includes a 1-click "Create New Patron" button (creates an anonymous Patron linked to the table).

  • "No Table" Interaction: Shows a list of Patrons not linked to any table. Waiters can create unlinked Patrons here.

  • Patron View:

  • Shows outstanding balance (sum of unpaid orders).

  • Shows history of previous orders.

  • Provides the interface to place a new order (mirroring the Live Sales layout).

  • Waiter Order Management Queue:

  • Shows a list of all pending or prepared orders.

  • Filters: Toggle to show only orders created by this specific POS device; Toggle to show only prepared orders.

  • Actions: Mark as delivered, or mark as voided (error correction).

4.3. Checkout & Payment Flow

  • Order Delivery: When the Waiter marks an order as delivered (or initiates payment), the standard payment dialog appears (Cash, Card, etc.).
  • Pay Later: If allow_unpaid_table_orders is true, the waiter can select "Pay Later", leaving the payment_status as unpaid while the fulfillment status becomes delivered.
  • Settle Balance: From the Patron scree...

🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.

Copilot AI and others added 3 commits March 13, 2026 12:40
…outes

- Create tables and patrons database migrations
- Add payment_status, patron_id, table_id to orders table
- Add allow_unpaid_table_orders to events table
- Create Table and Patron Eloquent models with relationships
- Update Order model with new status constants and relationships
- Update Event model with new fillable fields and relationships
- Create TableResourceDefinition and PatronResourceDefinition
- Update OrderResourceDefinition with payment_status, patron_id, table_id
- Update EventResourceDefinition in both APIs with allow_unpaid_table_orders
- Create shared TableController and PatronController with thin API stubs
- Create TablePolicy and PatronPolicy
- Register policies in AuthServiceProvider
- Register routes in both ManagementApi and DeviceApi
- Create PatronAssignmentService for patron lookup/creation algorithm

Co-authored-by: daedeloth <1168599+daedeloth@users.noreply.github.com>
- Create TableService.js and PatronService.js frontend services
- Create Tables.vue view for table management (shared between POS and Manage)
- Create WaiterDashboard.vue view for waiter POS mode (tables, patrons, order queue)
- Create PatronDetail.vue view for patron detail and balance settlement
- Register new routes in POS and Manage app.js
- Add table service navigation links in Events.vue for both apps
- Add allow_unpaid_table_orders checkbox in Manage Events edit modal

Co-authored-by: daedeloth <1168599+daedeloth@users.noreply.github.com>
…e balance

Co-authored-by: daedeloth <1168599+daedeloth@users.noreply.github.com>
Copilot AI changed the title [WIP] Implement table service integration for POS application Table Service Integration: models, API, and waiter POS views Mar 13, 2026
Copilot AI requested a review from daedeloth March 13, 2026 12:49
@daedeloth
Copy link
Copy Markdown
Member

@copilot add thorough unit and integration tests and documentation.

PHP Unit Tests (6 new test files, ~70 new tests):
- TableModelTest: model attributes, fillable, relationships, soft deletes
- PatronModelTest: model attributes, fillable, relationships, methods
- OrderStatusConstantsTest: new fulfillment/payment status constants
- TablePolicyTest: authorization for user, device, and null (20 tests)
- PatronPolicyTest: authorization for user, device, and null (20 tests)
- PatronAssignmentServiceTest: service instantiation, constants, edge cases

JavaScript/Vitest Tests (3 new test files, 66 new tests):
- table-service-routes.test.js: route config in POS/Manage/Client apps
- table-service-views.test.js: template content verification for Events.vue
- table-service-services.test.js: service structure and shared view integrity

Documentation:
- .ai/table-service.md: comprehensive architecture docs

Co-authored-by: daedeloth <1168599+daedeloth@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Mar 13, 2026

@copilot add thorough unit and integration tests and documentation.

Added in commit 1a404f4:

PHP Unit Tests (6 files, ~70 tests):

  • TableModelTest — model attributes, fillable, relationships, soft deletes
  • PatronModelTest — model attributes, fillable, relationships, methods
  • OrderStatusConstantsTest — fulfillment/payment status constants
  • TablePolicyTest — 20 tests: user/device/null auth for index/create/view/edit/destroy
  • PatronPolicyTest — 20 tests: user/device/null auth for index/create/view/edit/destroy
  • PatronAssignmentServiceTest — instantiation, constants, null/empty edge cases

Vitest Tests (3 files, 66 tests):

  • table-service-routes.test.js — route config verification across POS/Manage/Client
  • table-service-views.test.js — Events.vue template links and settings
  • table-service-services.test.js — service structure and shared view integrity

Documentation: .ai/table-service.md — schema, models, patron algorithm, API endpoints, policies, frontend, and offline design.

All 469 tests pass (203 PHPUnit + 234 Vitest + 32 Jest).

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • github.com (HTTP Only)
    • Triggering command: /usr/bin/ssh /usr/bin/ssh -o SendEnv=GIT_PROTOCOL git@github.com git-upload-pack &#39;CatLabInteractive/omnipay-paynl.git&#39; (packet block)
  • https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/base/zipball/6b3da8f0e8431333b60a5039405fd21da0b4d926
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/charon-laravel/zipball/63deb7367310dc9b0335e1e620f8205727c77fc5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/charon/zipball/505c7fcc8371ce484eede46e3640142d971970e3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/cursor-pagination/zipball/f4ca3f5d895b79dff24d853d83404c3f23b39fe3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/laravel-catlab-accounts/zipball/6a1b7b34347db0b50171f20e2485f82fc62f64aa
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/omnipay-paynl
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/Wobl87 /usr/bin/composer require --dev phpunit/phpunit --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/omnipay-paynl/zipball/4db536940962191006ac29a07710534667f8dc3f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/requirements/zipball/40633f8b09b9d5fb22f7900d1724758130531dcd
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/DASPRiD/Enum/zipball/b5874fa9ed0043116c72162ec7f4fb50e02e7cce
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/Seldaek/monolog/zipball/37308608e599f34a1a4845b16440047ec98a172a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/SocialiteProviders/Manager/zipball/4e63afbd26dc45ff263591de2a0970436a6a0bf9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/TheoKouzelis/laravel-airbrake/zipball/283c45f0987d820568f5412e9a094dc47438ed61
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/airbrake/phpbrake/zipball/05a972a5c1ee43367f489357153e757b9d0b1095
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/appstract/laravel-opcache/zipball/d2ce88cddda6af54c14d1f9ceaaf94b54f38f9d3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/cash/LRUCache/zipball/4fa4c6834cec59690b43526c4da41d6153026289
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/defuse/php-encryption/zipball/f53396c2d34225064647a05ca76c1da9d99e5828
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/dbal/zipball/63a46cb5aa6f60991186cc98c1d1b50c09311868
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/dragonmantank/cron-expression/zipball/1b2de7f4a468165dca07b142240733a1973e766d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/endroid/qr-code/zipball/0db25b506a8411a5e1644ebaa67123a6eb7b6a77
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/fruitcake/php-cors/zipball/38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/fzaninotto/Faker/zipball/d0190b156bcca848d401fb80f31f504f37141c8d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/framework/zipball/6055d9594c9da265ddbf1e27e7dd8f09624568bc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/passport/zipball/2642f360c51dfde3a6ea60f86ae5d9a8c0caf3cf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/socialite/zipball/0feb62267e7b8abc68593ca37639ad302728c129
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/ui/zipball/7d6ffa38d79f19c9b3e70a751a9af845e8f41d88
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/lcobucci/clock/zipball/039ef98c6b57b101d10bd11d8fdfda12cbd996dc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/lcobucci/jwt/zipball/08071d8d2c7f4b00222cc4b1fb6aa46990a80f83
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/moneyphp/money/zipball/b358727ea5a5cd2d7475e59c31dfc352440ae7ec
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/nette/schema/zipball/f0ab1a3cda782dbc5da270d28545236aa80c4002
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/nette/utils/zipball/2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/nunomaduro/termwind/zipball/5369ef84d8142c1d87e4ec278711d4ece3cbf301
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/paragonie/constant_time_encoding/zipball/d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/phpseclib/phpseclib/zipball/6233a1e12584754e6b5daa69fe1289b47775c1b9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/ramsey/uuid/zipball/8429c78ca35a09f27565311b98101e2826affde0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/comparator/zipball/e4df00b9b3571187db2831ae9aada2c6efbd715d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b36f02317466907a230d3aa1d34467041271ef4a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/539c6691e0623af6dc6f9c20384c120f963465a0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/console/zipball/0bc2199c6c1f05276b05956f1ddc63f6d7eb5fc3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/css-selector/zipball/9b784413143701aa3c94ac1869a159a9e53e8761
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/error-handler/zipball/8c18400784fcb014dc73c8d5601a9576af7f8ad4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/event-dispatcher/zipball/99d7e101826e6610606b9433248f80c1997cd20b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/finder/zipball/24965ca011dac87431729640feef8bcf7b5523e0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/http-foundation/zipball/f1a490cc9d595ba7ebe684220e625d1e472ad278
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/http-kernel/zipball/73fa5c999d7f741ca544a97d3c791cc97890ae4d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/mailer/zipball/8835f93333474780fda1b987cae37e33c3e026ca
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/mime/zipball/7409686879ca36c09fc970a5fa8ff6e93504dba4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/process/zipball/c46e854e79b52d07666e43924a20cb6dc546644e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/routing/zipball/0dc6253e864e71b486e8ba4970a56ab849106ebe
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/string/zipball/50590a057841fa6bf69d12eceffce3465b9e32cb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/translation/zipball/d6cc8e2fdd484f2f41d25938b0e8e3915de3cfbc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/uid/zipball/6b973c385f00341b246f697d82dc01a09107acdd
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/var-dumper/zipball/131fc9915e0343052af5ed5040401b481ca192aa
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/commonmark/zipball/84b1ca48347efdbe775426f108622a42735a6579
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/event/zipball/062ebb450efbe9a09bc2478e89b7c933875b0935
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/flysystem-local/zipball/2f669db18a4c20c755c2bb7d3a7b0b2340488079
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/flysystem/zipball/1717e0b3642b0df65ecb0cc89cdd99fa840672ff
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/oauth2-server/zipball/cc8778350f905667e796b3c2364a9d3bd7a73518
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/omnipay-common/zipball/cd58a4e7b359b0c5b9748542d422b5cc0d4a692f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/uri-interfaces/zipball/c5c5cd056110fc8afaba29fa6b72a43ced42acd4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/uri/zipball/4436c6ec8d458e4244448b069cc572d088230b76
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/f0292ccf0ec75843d65027214426b6b163b48b41
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/16PFsi /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • scarf.sh
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node node ./report.js /usr/local/bin/git /usr/lib/git-core/git repa�� -a -d tnet/tools/git mann/lines-of-cobash &#39;/home/REDACTED/.c--norc ndor/bin/git git remo�� set-url --push /usr/bin/git -- /complexity.git it git (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Copilot AI changed the title Table Service Integration: models, API, and waiter POS views Table Service Integration: models, API, waiter POS views, tests, and documentation Mar 13, 2026
@daedeloth
Copy link
Copy Markdown
Member

@copilot

1. tables should only be manageable in the manage app, not in the pos

2. when settling a debt (in patrondetail), we must follow a similar flow as in LiveSales:

let paymentData = await this.$paymentService.order(order);
order.payment_type = paymentData.paymentType;

this.$refs.processedModal.show();
setTimeout(function () {
	if (!this.$refs.processedModal) {
		return;
	}
	this.$refs.processedModal.hide();
}.bind(this), 2000);

order.status = 'processed';

=> it would make sense to add a new method '$paymentService.orders(orders: Order[])` that handles the payment of multiple orders in a single go.

3. In the POS 'settings' page, add a setting 'Allow table service at this terminal' that hides / shows the table service features. When selecting 'Allow table service at this terminal', it should not be possible to select any of the other two features (live orders & remote orders) as these are not really compatible with the use case.

4. Instead of a separate page, the wait dashboard should be integrated in the Headquarter component

5. The 'patron' selection and patron details view should show in modal, not in a seperate page

6. A table server must be able to create a new order from the patron details view.

Implement these changes.

In addition, take a look at the original specs and see if we have all required features:

We need to implement table service in the existing app. it is similar to remote orders (where patrons scan a qr code to order from their phones), but in this case the patrons tell a waiter what they want and the waiter enters the order on their phone.

This feature will require a whole bunch of refactoring.

1. Events must have a list of `tables`. There must be a way to manage these (create, rename, remove). In a future revision, we will likely provide a way to show tables on a map, but don't prepare anything for that. Each table must be an entry in the database though.

It must be very easy to generate x tables, all names 'Table {i}' (localized). It must also be possible to rename the tables.

In additional to an id, the table must also have a numeric table number that starts with 1 ... x

2. We must keep track of patron groups. We already store any (optional) 'name' that may be related to an `order` (provided by the quiz software that implements the drinks app; on regular qr code scans we don't have a name) but this needs to be expanded so that every order is assigned to a `patron`. Make this an eloquent model and a relation to the order model.

When receiving an order, the 'table' or 'name' property must determine to which patron group this order must be assigned. If no name is provided and if the patron that was last assigned to this table has an unpaid order, append the new order to that patron group. Otherwise, create a new patron group.

If a name is provided, attempt to find a patron that has placed an order in the past 24 hours (configurable duration) and append the order to that patron, regardless of the table and regardless if there any unpaid orders. We assume the name is unique across the organisation.

3. Orders must have a new status 'prepared' which indicated that the order is ready to be delivered (= processed). 

4. A POS must be configurable as a 'table service' device (similar to how remote and live sales can be enabled/disables). Table service is very similar to live sales, but orders that come from this mode must stay pending. 

A table service POS must show a list of all tables in the venue. When clicking a table, the device must show all patrons attached to this table, or create a new patron. Creating a new patron should be a one-click action, there is no need to assign names or other properties to the patron.

In addition, it should be possible to select 'no table', which shows a list of all patrons that are not assigned to a table. Patrons can be created, which are not linked to a table.

When selecting a patron, the device must show the outstanding balance (unpaid orders), all previous orders and must make it possible to place a new order. This flow is pretty much the same as the live orders page.

If (another) pos has remote orders enabled, the order must be visible on their device so the bar can start preparing the order. The table service device must see a list of all pending or prepared orders (with a toggle filter to only show orders that the device has created and a filter to only show prepared orders) and must be able to mark the order as 'processed'.

When a table service POS attempts to mark an order as processed, it must show the payment dialog with all payment methods the live sales has as well. In addition, if enabled for the loaded event (= allow_upaid_online_orders), the waiter must be able to select 'pay later'.

From the 'patron' screen, the waiter must be able to 'pay outstanding balance' in which case the regular payment flow starts for the amount of all unpaid orders added together. All relevant orders must then be marked as paid.

daedeloth and others added 5 commits March 13, 2026 17:25
…w, settings toggle

1. Tables only manageable in manage app - removed standalone routes from POS
2. Settlement uses PaymentService flow - added $paymentService.orders() for batch payment
3. POS Settings: 'Allow table service' toggle, mutually exclusive with live/remote
4. Waiter dashboard integrated into Headquarters component
5. Patron detail shown as modal within Headquarters
6. New order form in patron modal for creating orders

Updated all tests to match new architecture.

Co-authored-by: daedeloth <1168599+daedeloth@users.noreply.github.com>
Co-authored-by: daedeloth <1168599+daedeloth@users.noreply.github.com>
All files now use tab indentation per project conventions (CLAUDE.md).
Updated .ai/table-service.md to reflect the new integrated architecture.

Co-authored-by: daedeloth <1168599+daedeloth@users.noreply.github.com>
Co-authored-by: daedeloth <1168599+daedeloth@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Mar 13, 2026

@copilot

1. tables should only be manageable in the manage app, not in the pos

...

All 6 items implemented in commits 17d156e, 827de76:

  1. Tables only in manage app — Removed standalone tables/waiter/patron routes and dropdown links from POS. Table management stays in manage app only.

  2. Payment flow for settlement — Added PaymentService.orders() batch method. Settlement in the patron modal now triggers the payment popup (cash/card/voucher), then updates orders on the server. Follows the same pattern as LiveSales.

  3. Settings toggle — Added "Allow table service at this terminal" checkbox in POS Settings. When enabled, live and remote order checkboxes are disabled (mutually exclusive via watch + :disabled). Setting is persisted via SettingService and synced to the server.

  4. Integrated in Headquarters — When allowTableService is on, Headquarters shows the waiter dashboard (table grid + patron list + order queue) instead of the bar live/remote orders. No separate page.

  5. Patron detail as modal — Clicking a patron opens a b-modal (size xl, scrollable) showing outstanding balance, order history, settle button, and new order form. No separate page navigation.

  6. New orders from patron modal — LiveSales-style menu with +/- buttons inside the patron modal. Orders are created with patron_id and table_id set. If allow_unpaid_table_orders is false, payment is processed immediately via the payment popup.

All 485 tests pass (203 PHPUnit + 250 Vitest + 32 Jest). Frontend build succeeds.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/base/zipball/6b3da8f0e8431333b60a5039405fd21da0b4d926
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/charon-laravel/zipball/63deb7367310dc9b0335e1e620f8205727c77fc5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/charon/zipball/505c7fcc8371ce484eede46e3640142d971970e3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/cursor-pagination/zipball/f4ca3f5d895b79dff24d853d83404c3f23b39fe3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/laravel-catlab-accounts/zipball/6a1b7b34347db0b50171f20e2485f82fc62f64aa
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/omnipay-paynl/zipball/4db536940962191006ac29a07710534667f8dc3f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/requirements/zipball/40633f8b09b9d5fb22f7900d1724758130531dcd
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/DASPRiD/Enum/zipball/b5874fa9ed0043116c72162ec7f4fb50e02e7cce
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/Seldaek/monolog/zipball/37308608e599f34a1a4845b16440047ec98a172a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/SocialiteProviders/Manager/zipball/4e63afbd26dc45ff263591de2a0970436a6a0bf9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/TheoKouzelis/laravel-airbrake/zipball/283c45f0987d820568f5412e9a094dc47438ed61
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/airbrake/phpbrake/zipball/05a972a5c1ee43367f489357153e757b9d0b1095
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/appstract/laravel-opcache/zipball/d2ce88cddda6af54c14d1f9ceaaf94b54f38f9d3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/cash/LRUCache/zipball/4fa4c6834cec59690b43526c4da41d6153026289
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/defuse/php-encryption/zipball/f53396c2d34225064647a05ca76c1da9d99e5828
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/dbal/zipball/63a46cb5aa6f60991186cc98c1d1b50c09311868
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/dragonmantank/cron-expression/zipball/1b2de7f4a468165dca07b142240733a1973e766d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/endroid/qr-code/zipball/0db25b506a8411a5e1644ebaa67123a6eb7b6a77
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/fruitcake/php-cors/zipball/38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/fzaninotto/Faker/zipball/d0190b156bcca848d401fb80f31f504f37141c8d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/framework/zipball/6055d9594c9da265ddbf1e27e7dd8f09624568bc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/passport/zipball/2642f360c51dfde3a6ea60f86ae5d9a8c0caf3cf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/socialite/zipball/0feb62267e7b8abc68593ca37639ad302728c129
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/ui/zipball/7d6ffa38d79f19c9b3e70a751a9af845e8f41d88
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/lcobucci/clock/zipball/039ef98c6b57b101d10bd11d8fdfda12cbd996dc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/lcobucci/jwt/zipball/08071d8d2c7f4b00222cc4b1fb6aa46990a80f83
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/moneyphp/money/zipball/b358727ea5a5cd2d7475e59c31dfc352440ae7ec
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/nette/schema/zipball/f0ab1a3cda782dbc5da270d28545236aa80c4002
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/nette/utils/zipball/2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/nunomaduro/termwind/zipball/5369ef84d8142c1d87e4ec278711d4ece3cbf301
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/paragonie/constant_time_encoding/zipball/d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/phpseclib/phpseclib/zipball/6233a1e12584754e6b5daa69fe1289b47775c1b9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/ramsey/uuid/zipball/8429c78ca35a09f27565311b98101e2826affde0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/comparator/zipball/e4df00b9b3571187db2831ae9aada2c6efbd715d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b36f02317466907a230d3aa1d34467041271ef4a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/539c6691e0623af6dc6f9c20384c120f963465a0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/console/zipball/0bc2199c6c1f05276b05956f1ddc63f6d7eb5fc3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/css-selector/zipball/9b784413143701aa3c94ac1869a159a9e53e8761
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/error-handler/zipball/8c18400784fcb014dc73c8d5601a9576af7f8ad4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/event-dispatcher/zipball/99d7e101826e6610606b9433248f80c1997cd20b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/finder/zipball/24965ca011dac87431729640feef8bcf7b5523e0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/http-foundation/zipball/f1a490cc9d595ba7ebe684220e625d1e472ad278
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/http-kernel/zipball/73fa5c999d7f741ca544a97d3c791cc97890ae4d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/mailer/zipball/8835f93333474780fda1b987cae37e33c3e026ca
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/mime/zipball/7409686879ca36c09fc970a5fa8ff6e93504dba4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/process/zipball/c46e854e79b52d07666e43924a20cb6dc546644e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/routing/zipball/0dc6253e864e71b486e8ba4970a56ab849106ebe
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/string/zipball/50590a057841fa6bf69d12eceffce3465b9e32cb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/translation/zipball/d6cc8e2fdd484f2f41d25938b0e8e3915de3cfbc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/uid/zipball/6b973c385f00341b246f697d82dc01a09107acdd
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/var-dumper/zipball/131fc9915e0343052af5ed5040401b481ca192aa
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/commonmark/zipball/84b1ca48347efdbe775426f108622a42735a6579
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/event/zipball/062ebb450efbe9a09bc2478e89b7c933875b0935
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/flysystem-local/zipball/2f669db18a4c20c755c2bb7d3a7b0b2340488079
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/flysystem/zipball/1717e0b3642b0df65ecb0cc89cdd99fa840672ff
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/oauth2-server/zipball/cc8778350f905667e796b3c2364a9d3bd7a73518
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/omnipay-common/zipball/cd58a4e7b359b0c5b9748542d422b5cc0d4a692f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/uri-interfaces/zipball/c5c5cd056110fc8afaba29fa6b72a43ced42acd4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/uri/zipball/4436c6ec8d458e4244448b069cc572d088230b76
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/f0292ccf0ec75843d65027214426b6b163b48b41
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/OckCGq /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • scarf.sh
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node node ./report.js (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

@daedeloth
Copy link
Copy Markdown
Member

@copilot

  1. The 'patron selection' or creation view should show in the same modal as the patron details. So select table -> modal opens -> select / create patron -> patrion details
  2. The 'table service' in headquarters should be isolated in its own component (in pos/js/components/).
  3. The 'new order' button should use the LiveSales somehow to place the order; right now this is a huge mess of duplicated code.
  4. if allow_unpaid_table_orders is true, skipping payment must be optional. Extend the payment service to allow placing a 'pay later' button in the payment popup to skip payment for now.

1. Patron selection & details in same modal: table click opens modal
   at patron list step, selecting patron transitions to details view,
   "Back to patron list" returns to selection.

2. Table service extracted to pos/js/components/TableService.vue.
   Headquarters delegates via <table-service> component tag.

3. New order form reuses LiveSales component with patronId, tableId,
   and allowPayLater props. No more duplicated menu/order code.

4. Pay Later button added to PaymentPopup when allow_pay_later is set
   on PaymentService. PaymentService.payLater() resolves with
   paymentType 'pay-later'. LiveSales enables/resets the flag per order.

Co-authored-by: daedeloth <1168599+daedeloth@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Mar 13, 2026

@copilot

  1. The 'patron selection' or creation view should show in the same modal as the patron details. So select table -> modal opens -> select / create patron -> patrion details
    ...

All 4 items implemented in commit 1da6174:

  1. Patron selection in same modal — Table click opens modal at patron list step. Selecting a patron transitions to details view within the same modal. "Back to patron list" button returns to selection step. Creating a new patron immediately opens their details.

  2. Extracted to own component — All table service logic moved to pos/js/components/TableService.vue. Headquarters.vue now just renders <table-service v-bind:event="event"> when table service mode is active.

  3. Reuses LiveSales — New order form in patron modal uses the LiveSales component with patronId, tableId, and allowPayLater props. Orders are created with correct patron/table context. No duplicated menu/order code.

  4. Pay Later in payment popup — PaymentService has allow_pay_later flag and payLater() method. When allow_unpaid_table_orders is true, LiveSales sets the flag before payment, and PaymentPopup shows a "🕐 Pay later" button alongside cash/card/voucher. The flag is reset after each order.

All 506 tests pass (203 PHPUnit + 271 Vitest + 32 Jest).

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/base/zipball/6b3da8f0e8431333b60a5039405fd21da0b4d926
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/charon-laravel/zipball/63deb7367310dc9b0335e1e620f8205727c77fc5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/charon/zipball/505c7fcc8371ce484eede46e3640142d971970e3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/cursor-pagination/zipball/f4ca3f5d895b79dff24d853d83404c3f23b39fe3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/laravel-catlab-accounts/zipball/6a1b7b34347db0b50171f20e2485f82fc62f64aa
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/omnipay-paynl/zipball/4db536940962191006ac29a07710534667f8dc3f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/CatLabInteractive/requirements/zipball/40633f8b09b9d5fb22f7900d1724758130531dcd
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/DASPRiD/Enum/zipball/b5874fa9ed0043116c72162ec7f4fb50e02e7cce
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/HdnI3B /usr/bin/composer install --ignore-platform-reqs de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/Seldaek/monolog/zipball/37308608e599f34a1a4845b16440047ec98a172a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/SocialiteProviders/Manager/zipball/4e63afbd26dc45ff263591de2a0970436a6a0bf9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/TheoKouzelis/laravel-airbrake/zipball/283c45f0987d820568f5412e9a094dc47438ed61
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/airbrake/phpbrake/zipball/05a972a5c1ee43367f489357153e757b9d0b1095
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/appstract/laravel-opcache/zipball/d2ce88cddda6af54c14d1f9ceaaf94b54f38f9d3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/cash/LRUCache/zipball/4fa4c6834cec59690b43526c4da41d6153026289
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/defuse/php-encryption/zipball/f53396c2d34225064647a05ca76c1da9d99e5828
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/dbal/zipball/63a46cb5aa6f60991186cc98c1d1b50c09311868
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/dragonmantank/cron-expression/zipball/1b2de7f4a468165dca07b142240733a1973e766d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/endroid/qr-code/zipball/0db25b506a8411a5e1644ebaa67123a6eb7b6a77
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/fruitcake/php-cors/zipball/38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/fzaninotto/Faker/zipball/d0190b156bcca848d401fb80f31f504f37141c8d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/framework/zipball/6055d9594c9da265ddbf1e27e7dd8f09624568bc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/passport/zipball/2642f360c51dfde3a6ea60f86ae5d9a8c0caf3cf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/socialite/zipball/0feb62267e7b8abc68593ca37639ad302728c129
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/laravel/ui/zipball/7d6ffa38d79f19c9b3e70a751a9af845e8f41d88
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/lcobucci/clock/zipball/039ef98c6b57b101d10bd11d8fdfda12cbd996dc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/lcobucci/jwt/zipball/08071d8d2c7f4b00222cc4b1fb6aa46990a80f83
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/moneyphp/money/zipball/b358727ea5a5cd2d7475e59c31dfc352440ae7ec
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/nette/schema/zipball/f0ab1a3cda782dbc5da270d28545236aa80c4002
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/nette/utils/zipball/2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/nunomaduro/termwind/zipball/5369ef84d8142c1d87e4ec278711d4ece3cbf301
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/paragonie/constant_time_encoding/zipball/d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/HdnI3B /usr/bin/composer install --ignore-platform-reqs de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/phpseclib/phpseclib/zipball/6233a1e12584754e6b5daa69fe1289b47775c1b9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/ramsey/uuid/zipball/8429c78ca35a09f27565311b98101e2826affde0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/HdnI3B /usr/bin/composer install --ignore-platform-reqs de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/comparator/zipball/e4df00b9b3571187db2831ae9aada2c6efbd715d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b36f02317466907a230d3aa1d34467041271ef4a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/539c6691e0623af6dc6f9c20384c120f963465a0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/console/zipball/0bc2199c6c1f05276b05956f1ddc63f6d7eb5fc3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/css-selector/zipball/9b784413143701aa3c94ac1869a159a9e53e8761
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/error-handler/zipball/8c18400784fcb014dc73c8d5601a9576af7f8ad4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/event-dispatcher/zipball/99d7e101826e6610606b9433248f80c1997cd20b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/finder/zipball/24965ca011dac87431729640feef8bcf7b5523e0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/http-foundation/zipball/f1a490cc9d595ba7ebe684220e625d1e472ad278
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/http-kernel/zipball/73fa5c999d7f741ca544a97d3c791cc97890ae4d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/mailer/zipball/8835f93333474780fda1b987cae37e33c3e026ca
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/mime/zipball/7409686879ca36c09fc970a5fa8ff6e93504dba4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/HdnI3B /usr/bin/composer install --ignore-platform-reqs de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/HdnI3B /usr/bin/composer install --ignore-platform-reqs de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/HdnI3B /usr/bin/composer install --ignore-platform-reqs de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/process/zipball/c46e854e79b52d07666e43924a20cb6dc546644e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/routing/zipball/0dc6253e864e71b486e8ba4970a56ab849106ebe
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/string/zipball/50590a057841fa6bf69d12eceffce3465b9e32cb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/translation/zipball/d6cc8e2fdd484f2f41d25938b0e8e3915de3cfbc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/uid/zipball/6b973c385f00341b246f697d82dc01a09107acdd
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/symfony/var-dumper/zipball/131fc9915e0343052af5ed5040401b481ca192aa
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/commonmark/zipball/84b1ca48347efdbe775426f108622a42735a6579
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/event/zipball/062ebb450efbe9a09bc2478e89b7c933875b0935
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/flysystem-local/zipball/2f669db18a4c20c755c2bb7d3a7b0b2340488079
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/flysystem/zipball/1717e0b3642b0df65ecb0cc89cdd99fa840672ff
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/oauth2-server/zipball/cc8778350f905667e796b3c2364a9d3bd7a73518
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/omnipay-common/zipball/cd58a4e7b359b0c5b9748542d422b5cc0d4a692f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/uri-interfaces/zipball/c5c5cd056110fc8afaba29fa6b72a43ced42acd4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/thephpleague/uri/zipball/4436c6ec8d458e4244448b069cc572d088230b76
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/f0292ccf0ec75843d65027214426b6b163b48b41
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/HdnI3B /usr/bin/composer install --ignore-platform-reqs de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/HdnI3B /usr/bin/composer install --ignore-platform-reqs de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/qive7g /usr/bin/composer install --ignore-platform-reqs --no-interaction (http block)
  • scarf.sh
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node node ./report.js (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Feature Specification: Table Service Integration

2 participants