From 75299b723d0f0e764e56e7db7072710a654dd8e4 Mon Sep 17 00:00:00 2001
From: TheOnlyMace <0815cracky@gmail.com>
Date: Sun, 17 May 2026 13:26:14 +0200
Subject: [PATCH] initial commit
---
.editorconfig | 18 +
.env.example | 138 +
.gitattributes | 11 +
.gitignore | 27 +
.npmrc | 2 +
README.md | 58 +
.../Commands/CollectVmMetricsCommand.php | 21 +
.../Commands/PruneSnapshotsCommand.php | 21 +
.../PurgeExpiredIsoUploadsCommand.php | 35 +
.../Commands/RebuildTraefikRoutesCommand.php | 32 +
.../ReleaseVmidReservationsCommand.php | 21 +
app/Enums/IpPoolType.php | 17 +
app/Enums/UserRole.php | 17 +
app/Enums/VmPowerAction.php | 33 +
app/Exceptions/Hosting/PleskException.php | 7 +
.../Hosting/ProvisioningException.php | 18 +
app/Exceptions/Hosting/ProxmoxException.php | 7 +
app/Exceptions/Hosting/TraefikException.php | 7 +
.../Api/ConsoleValidateController.php | 30 +
.../Api/WhmcsServiceController.php | 162 +
app/Http/Controllers/Auth/LoginController.php | 50 +
.../Controllers/Auth/TwoFactorController.php | 65 +
app/Http/Controllers/Controller.php | 10 +
.../CustomerProvisioningController.php | 58 +
.../Web/Admin/SystemHealthController.php | 17 +
.../Web/Admin/VmTemplateController.php | 72 +
.../Controllers/Web/DashboardController.php | 45 +
app/Http/Controllers/Web/IpPoolController.php | 123 +
.../Controllers/Web/IsoUploadController.php | 38 +
app/Http/Controllers/Web/UserController.php | 106 +
.../Controllers/Web/VmBackupController.php | 24 +
.../Controllers/Web/VmConsoleController.php | 47 +
app/Http/Controllers/Web/VmController.php | 215 +
.../Controllers/Web/VmFirewallController.php | 53 +
app/Http/Controllers/Web/VmIsoController.php | 55 +
.../Controllers/Web/VmPowerController.php | 36 +
.../Controllers/Web/VmReinstallController.php | 26 +
.../Controllers/Web/VmSnapshotController.php | 55 +
.../Controllers/Web/VmStatusController.php | 42 +
.../Middleware/EnsureTwoFactorVerified.php | 33 +
app/Http/Middleware/EnsureUserIsAdmin.php | 19 +
app/Http/Middleware/VerifyWhmcsRequest.php | 48 +
app/Http/Requests/StoreCustomerRequest.php | 42 +
app/Http/Requests/StoreVmRequest.php | 64 +
app/Http/Requests/UpdateVmRequest.php | 28 +
.../Whmcs/ProvisionServiceRequest.php | 57 +
app/Jobs/ProvisionCustomerJob.php | 75 +
app/Models/Customer.php | 129 +
app/Models/CustomerIsoUpload.php | 30 +
app/Models/HostingPlan.php | 41 +
app/Models/IpPool.php | 74 +
app/Models/SystemSetting.php | 32 +
app/Models/User.php | 46 +
app/Models/VmActivityLog.php | 35 +
app/Models/VmBackup.php | 26 +
app/Models/VmDevice.php | 58 +
app/Models/VmFirewallRule.php | 26 +
app/Models/VmMetric.php | 32 +
app/Models/VmSnapshot.php | 26 +
app/Models/VmTemplate.php | 20 +
app/Models/VmidReservation.php | 36 +
app/Models/WhmcsService.php | 45 +
app/Policies/IpPoolPolicy.php | 34 +
app/Policies/UserPolicy.php | 28 +
app/Policies/VmPolicy.php | 39 +
app/Providers/AppServiceProvider.php | 36 +
app/Providers/HostingServiceProvider.php | 36 +
app/Services/Auth/TwoFactorService.php | 87 +
.../Hosting/Backups/BackupService.php | 73 +
.../Hosting/DTO/CustomerProvisionData.php | 74 +
.../Hosting/Firewall/FirewallService.php | 33 +
.../Hosting/Health/SystemHealthService.php | 71 +
app/Services/Hosting/Iso/IsoUploadService.php | 67 +
.../Metrics/MetricsCollectorService.php | 46 +
.../HostingNotificationService.php | 60 +
app/Services/Hosting/Plesk/PleskClient.php | 219 +
.../Provisioning/DeprovisionService.php | 86 +
.../Provisioning/IpAddressAllocator.php | 162 +
.../Provisioning/ProvisioningRollback.php | 69 +
.../Provisioning/ProvisioningService.php | 262 +
.../Provisioning/VmidReservationService.php | 104 +
.../Hosting/Proxmox/ProxmoxClient.php | 591 ++
.../Hosting/Proxmox/VmManagementService.php | 192 +
.../Hosting/Reinstall/ReinstallService.php | 40 +
.../Hosting/Snapshots/SnapshotService.php | 70 +
.../Hosting/Traefik/TraefikGenerator.php | 233 +
artisan | 18 +
bootstrap/app.php | 27 +
bootstrap/cache/.gitignore | 2 +
bootstrap/providers.php | 9 +
composer.json | 89 +
composer.lock | 8705 +++++++++++++++++
composer.phar | Bin 0 -> 3377204 bytes
config/app.php | 126 +
config/auth.php | 117 +
config/cache.php | 130 +
config/database.php | 184 +
config/filesystems.php | 80 +
config/hosting.php | 115 +
config/logging.php | 132 +
config/mail.php | 118 +
config/queue.php | 129 +
config/services.php | 38 +
config/session.php | 233 +
database/.gitignore | 1 +
database/factories/UserFactory.php | 48 +
.../0001_01_01_000000_create_users_table.php | 49 +
.../0001_01_01_000001_create_cache_table.php | 35 +
.../0001_01_01_000002_create_jobs_table.php | 59 +
...26_05_15_000001_create_customers_table.php | 34 +
...026_05_15_100000_add_hosting_ui_tables.php | 67 +
..._05_16_000001_add_vm_management_fields.php | 40 +
...000001_add_whmcs_vmid_lifecycle_tables.php | 92 +
...18_000001_add_platform_features_tables.php | 95 +
database/seeders/DatabaseSeeder.php | 16 +
database/seeders/HostingSeeder.php | 70 +
package-lock.json | 1614 +++
package.json | 16 +
phpunit.xml | 36 +
public/.htaccess | 25 +
public/favicon.ico | 0
public/index.php | 20 +
public/robots.txt | 2 +
resources/css/app.css | 12 +
resources/css/hexahost.css | 115 +
resources/js/app.js | 1 +
resources/views/admin/health.blade.php | 15 +
.../views/admin/templates/create.blade.php | 15 +
.../views/admin/templates/edit.blade.php | 15 +
.../views/admin/templates/index.blade.php | 25 +
resources/views/auth/login.blade.php | 40 +
.../views/auth/two-factor-challenge.blade.php | 14 +
.../views/auth/two-factor-setup.blade.php | 16 +
resources/views/dashboard.blade.php | 69 +
resources/views/ip-pools/create.blade.php | 31 +
resources/views/ip-pools/edit.blade.php | 35 +
resources/views/ip-pools/index.blade.php | 64 +
resources/views/iso-uploads/index.blade.php | 24 +
resources/views/layouts/app.blade.php | 64 +
.../views/partials/status-badge.blade.php | 12 +
.../views/partials/vm-device-fields.blade.php | 28 +
.../views/partials/vm-device-row.blade.php | 25 +
resources/views/users/create.blade.php | 25 +
resources/views/users/edit.blade.php | 33 +
resources/views/users/index.blade.php | 37 +
resources/views/vms/console-error.blade.php | 15 +
resources/views/vms/console.blade.php | 55 +
resources/views/vms/create.blade.php | 98 +
resources/views/vms/edit.blade.php | 33 +
resources/views/vms/index.blade.php | 61 +
resources/views/vms/show.blade.php | 250 +
resources/views/welcome.blade.php | 223 +
routes/api.php | 22 +
routes/console.php | 14 +
routes/web.php | 80 +
scripts/console-ws-proxy.mjs | 49 +
storage/app/.gitignore | 4 +
storage/app/private/.gitignore | 2 +
storage/app/public/.gitignore | 2 +
storage/framework/.gitignore | 9 +
storage/framework/cache/.gitignore | 3 +
storage/framework/cache/data/.gitignore | 2 +
storage/framework/sessions/.gitignore | 2 +
storage/framework/testing/.gitignore | 2 +
storage/framework/views/.gitignore | 2 +
storage/logs/.gitignore | 2 +
storage/traefik/dynamic/.gitkeep | 1 +
tests/Feature/Api/WhmcsApiTest.php | 86 +
tests/Feature/ExampleTest.php | 13 +
tests/Feature/Web/VmAuthorizationTest.php | 66 +
tests/Feature/Web/VmManagementTest.php | 107 +
tests/TestCase.php | 19 +
tests/Unit/ExampleTest.php | 16 +
tests/Unit/TraefikGeneratorTest.php | 78 +
vite.config.js | 24 +
whmcs-module/hexahost/hexahost.php | 148 +
176 files changed, 20327 insertions(+)
create mode 100644 .editorconfig
create mode 100644 .env.example
create mode 100644 .gitattributes
create mode 100644 .gitignore
create mode 100644 .npmrc
create mode 100644 README.md
create mode 100644 app/Console/Commands/CollectVmMetricsCommand.php
create mode 100644 app/Console/Commands/PruneSnapshotsCommand.php
create mode 100644 app/Console/Commands/PurgeExpiredIsoUploadsCommand.php
create mode 100644 app/Console/Commands/RebuildTraefikRoutesCommand.php
create mode 100644 app/Console/Commands/ReleaseVmidReservationsCommand.php
create mode 100644 app/Enums/IpPoolType.php
create mode 100644 app/Enums/UserRole.php
create mode 100644 app/Enums/VmPowerAction.php
create mode 100644 app/Exceptions/Hosting/PleskException.php
create mode 100644 app/Exceptions/Hosting/ProvisioningException.php
create mode 100644 app/Exceptions/Hosting/ProxmoxException.php
create mode 100644 app/Exceptions/Hosting/TraefikException.php
create mode 100644 app/Http/Controllers/Api/ConsoleValidateController.php
create mode 100644 app/Http/Controllers/Api/WhmcsServiceController.php
create mode 100644 app/Http/Controllers/Auth/LoginController.php
create mode 100644 app/Http/Controllers/Auth/TwoFactorController.php
create mode 100644 app/Http/Controllers/Controller.php
create mode 100644 app/Http/Controllers/CustomerProvisioningController.php
create mode 100644 app/Http/Controllers/Web/Admin/SystemHealthController.php
create mode 100644 app/Http/Controllers/Web/Admin/VmTemplateController.php
create mode 100644 app/Http/Controllers/Web/DashboardController.php
create mode 100644 app/Http/Controllers/Web/IpPoolController.php
create mode 100644 app/Http/Controllers/Web/IsoUploadController.php
create mode 100644 app/Http/Controllers/Web/UserController.php
create mode 100644 app/Http/Controllers/Web/VmBackupController.php
create mode 100644 app/Http/Controllers/Web/VmConsoleController.php
create mode 100644 app/Http/Controllers/Web/VmController.php
create mode 100644 app/Http/Controllers/Web/VmFirewallController.php
create mode 100644 app/Http/Controllers/Web/VmIsoController.php
create mode 100644 app/Http/Controllers/Web/VmPowerController.php
create mode 100644 app/Http/Controllers/Web/VmReinstallController.php
create mode 100644 app/Http/Controllers/Web/VmSnapshotController.php
create mode 100644 app/Http/Controllers/Web/VmStatusController.php
create mode 100644 app/Http/Middleware/EnsureTwoFactorVerified.php
create mode 100644 app/Http/Middleware/EnsureUserIsAdmin.php
create mode 100644 app/Http/Middleware/VerifyWhmcsRequest.php
create mode 100644 app/Http/Requests/StoreCustomerRequest.php
create mode 100644 app/Http/Requests/StoreVmRequest.php
create mode 100644 app/Http/Requests/UpdateVmRequest.php
create mode 100644 app/Http/Requests/Whmcs/ProvisionServiceRequest.php
create mode 100644 app/Jobs/ProvisionCustomerJob.php
create mode 100644 app/Models/Customer.php
create mode 100644 app/Models/CustomerIsoUpload.php
create mode 100644 app/Models/HostingPlan.php
create mode 100644 app/Models/IpPool.php
create mode 100644 app/Models/SystemSetting.php
create mode 100644 app/Models/User.php
create mode 100644 app/Models/VmActivityLog.php
create mode 100644 app/Models/VmBackup.php
create mode 100644 app/Models/VmDevice.php
create mode 100644 app/Models/VmFirewallRule.php
create mode 100644 app/Models/VmMetric.php
create mode 100644 app/Models/VmSnapshot.php
create mode 100644 app/Models/VmTemplate.php
create mode 100644 app/Models/VmidReservation.php
create mode 100644 app/Models/WhmcsService.php
create mode 100644 app/Policies/IpPoolPolicy.php
create mode 100644 app/Policies/UserPolicy.php
create mode 100644 app/Policies/VmPolicy.php
create mode 100644 app/Providers/AppServiceProvider.php
create mode 100644 app/Providers/HostingServiceProvider.php
create mode 100644 app/Services/Auth/TwoFactorService.php
create mode 100644 app/Services/Hosting/Backups/BackupService.php
create mode 100644 app/Services/Hosting/DTO/CustomerProvisionData.php
create mode 100644 app/Services/Hosting/Firewall/FirewallService.php
create mode 100644 app/Services/Hosting/Health/SystemHealthService.php
create mode 100644 app/Services/Hosting/Iso/IsoUploadService.php
create mode 100644 app/Services/Hosting/Metrics/MetricsCollectorService.php
create mode 100644 app/Services/Hosting/Notifications/HostingNotificationService.php
create mode 100644 app/Services/Hosting/Plesk/PleskClient.php
create mode 100644 app/Services/Hosting/Provisioning/DeprovisionService.php
create mode 100644 app/Services/Hosting/Provisioning/IpAddressAllocator.php
create mode 100644 app/Services/Hosting/Provisioning/ProvisioningRollback.php
create mode 100644 app/Services/Hosting/Provisioning/ProvisioningService.php
create mode 100644 app/Services/Hosting/Provisioning/VmidReservationService.php
create mode 100644 app/Services/Hosting/Proxmox/ProxmoxClient.php
create mode 100644 app/Services/Hosting/Proxmox/VmManagementService.php
create mode 100644 app/Services/Hosting/Reinstall/ReinstallService.php
create mode 100644 app/Services/Hosting/Snapshots/SnapshotService.php
create mode 100644 app/Services/Hosting/Traefik/TraefikGenerator.php
create mode 100755 artisan
create mode 100644 bootstrap/app.php
create mode 100644 bootstrap/cache/.gitignore
create mode 100644 bootstrap/providers.php
create mode 100644 composer.json
create mode 100644 composer.lock
create mode 100755 composer.phar
create mode 100644 config/app.php
create mode 100644 config/auth.php
create mode 100644 config/cache.php
create mode 100644 config/database.php
create mode 100644 config/filesystems.php
create mode 100644 config/hosting.php
create mode 100644 config/logging.php
create mode 100644 config/mail.php
create mode 100644 config/queue.php
create mode 100644 config/services.php
create mode 100644 config/session.php
create mode 100644 database/.gitignore
create mode 100644 database/factories/UserFactory.php
create mode 100644 database/migrations/0001_01_01_000000_create_users_table.php
create mode 100644 database/migrations/0001_01_01_000001_create_cache_table.php
create mode 100644 database/migrations/0001_01_01_000002_create_jobs_table.php
create mode 100644 database/migrations/2026_05_15_000001_create_customers_table.php
create mode 100644 database/migrations/2026_05_15_100000_add_hosting_ui_tables.php
create mode 100644 database/migrations/2026_05_16_000001_add_vm_management_fields.php
create mode 100644 database/migrations/2026_05_17_000001_add_whmcs_vmid_lifecycle_tables.php
create mode 100644 database/migrations/2026_05_18_000001_add_platform_features_tables.php
create mode 100644 database/seeders/DatabaseSeeder.php
create mode 100644 database/seeders/HostingSeeder.php
create mode 100644 package-lock.json
create mode 100644 package.json
create mode 100644 phpunit.xml
create mode 100644 public/.htaccess
create mode 100644 public/favicon.ico
create mode 100644 public/index.php
create mode 100644 public/robots.txt
create mode 100644 resources/css/app.css
create mode 100644 resources/css/hexahost.css
create mode 100644 resources/js/app.js
create mode 100644 resources/views/admin/health.blade.php
create mode 100644 resources/views/admin/templates/create.blade.php
create mode 100644 resources/views/admin/templates/edit.blade.php
create mode 100644 resources/views/admin/templates/index.blade.php
create mode 100644 resources/views/auth/login.blade.php
create mode 100644 resources/views/auth/two-factor-challenge.blade.php
create mode 100644 resources/views/auth/two-factor-setup.blade.php
create mode 100644 resources/views/dashboard.blade.php
create mode 100644 resources/views/ip-pools/create.blade.php
create mode 100644 resources/views/ip-pools/edit.blade.php
create mode 100644 resources/views/ip-pools/index.blade.php
create mode 100644 resources/views/iso-uploads/index.blade.php
create mode 100644 resources/views/layouts/app.blade.php
create mode 100644 resources/views/partials/status-badge.blade.php
create mode 100644 resources/views/partials/vm-device-fields.blade.php
create mode 100644 resources/views/partials/vm-device-row.blade.php
create mode 100644 resources/views/users/create.blade.php
create mode 100644 resources/views/users/edit.blade.php
create mode 100644 resources/views/users/index.blade.php
create mode 100644 resources/views/vms/console-error.blade.php
create mode 100644 resources/views/vms/console.blade.php
create mode 100644 resources/views/vms/create.blade.php
create mode 100644 resources/views/vms/edit.blade.php
create mode 100644 resources/views/vms/index.blade.php
create mode 100644 resources/views/vms/show.blade.php
create mode 100644 resources/views/welcome.blade.php
create mode 100644 routes/api.php
create mode 100644 routes/console.php
create mode 100644 routes/web.php
create mode 100644 scripts/console-ws-proxy.mjs
create mode 100644 storage/app/.gitignore
create mode 100644 storage/app/private/.gitignore
create mode 100644 storage/app/public/.gitignore
create mode 100644 storage/framework/.gitignore
create mode 100644 storage/framework/cache/.gitignore
create mode 100644 storage/framework/cache/data/.gitignore
create mode 100644 storage/framework/sessions/.gitignore
create mode 100644 storage/framework/testing/.gitignore
create mode 100644 storage/framework/views/.gitignore
create mode 100644 storage/logs/.gitignore
create mode 100644 storage/traefik/dynamic/.gitkeep
create mode 100644 tests/Feature/Api/WhmcsApiTest.php
create mode 100644 tests/Feature/ExampleTest.php
create mode 100644 tests/Feature/Web/VmAuthorizationTest.php
create mode 100644 tests/Feature/Web/VmManagementTest.php
create mode 100644 tests/TestCase.php
create mode 100644 tests/Unit/ExampleTest.php
create mode 100644 tests/Unit/TraefikGeneratorTest.php
create mode 100644 vite.config.js
create mode 100644 whmcs-module/hexahost/hexahost.php
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..6df8428
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,18 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_size = 4
+indent_style = space
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.md]
+trim_trailing_whitespace = false
+
+[*.{yml,yaml}]
+indent_size = 2
+
+[{compose,docker-compose}.{yml,yaml}]
+indent_size = 4
diff --git a/.env.example b/.env.example
new file mode 100644
index 0000000..ee55f94
--- /dev/null
+++ b/.env.example
@@ -0,0 +1,138 @@
+APP_NAME="HexaHost Panel"
+APP_ENV=local
+APP_KEY=
+APP_DEBUG=true
+APP_URL=https://panel.hexahost.de
+
+APP_LOCALE=de
+APP_FALLBACK_LOCALE=de
+APP_FAKER_LOCALE=de_DE
+
+APP_MAINTENANCE_DRIVER=file
+
+BCRYPT_ROUNDS=12
+
+LOG_CHANNEL=stack
+LOG_STACK=single
+LOG_DEPRECATIONS_CHANNEL=null
+LOG_LEVEL=debug
+
+# --- Datenbank (Produktion: mariadb/mysql auf Plesk) ---
+DB_CONNECTION=sqlite
+# DB_CONNECTION=mariadb
+# DB_HOST=127.0.0.1
+# DB_PORT=3306
+# DB_DATABASE=hexahost_panel
+# DB_USERNAME=panel_user
+# DB_PASSWORD=
+
+SESSION_DRIVER=database
+SESSION_LIFETIME=120
+SESSION_ENCRYPT=false
+SESSION_PATH=/
+SESSION_DOMAIN=null
+
+BROADCAST_CONNECTION=log
+FILESYSTEM_DISK=local
+QUEUE_CONNECTION=database
+
+CACHE_STORE=database
+
+REDIS_CLIENT=phpredis
+REDIS_HOST=127.0.0.1
+REDIS_PASSWORD=null
+REDIS_PORT=6379
+
+MAIL_MAILER=log
+MAIL_HOST=127.0.0.1
+MAIL_PORT=2525
+MAIL_USERNAME=null
+MAIL_PASSWORD=null
+MAIL_FROM_ADDRESS="panel@hexahost.de"
+MAIL_FROM_NAME="${APP_NAME}"
+
+VITE_APP_NAME="${APP_NAME}"
+
+# --- Proxmox VE ---
+PROXMOX_URL=https://hyperion.rz-wob.hexahost.de:8006
+PROXMOX_CONSOLE_WS_URL=https://hyperion.rz-wob.hexahost.de:8006
+PROXMOX_TOKEN=user@pam!tokenid=secret
+PROXMOX_NODE=hyperion
+PROXMOX_STORAGE=vmdata
+PROXMOX_BRIDGE=vmbr0
+PROXMOX_PUBLIC_BRIDGE=vmbr1
+PROXMOX_ISO_STORAGE=ISO
+PROXMOX_ISO_DEVICE=ide2
+PROXMOX_BACKUP_STORAGE=inett-PBS
+PROXMOX_TEMPLATE_VMID=
+PROXMOX_TIMEOUT=120
+PROXMOX_VERIFY_SSL=true
+
+# --- Privates VM-Netz 10.32.0.0/24 ---
+HOSTING_GATEWAY=10.32.0.1
+HOSTING_NETWORK_CIDR=24
+HOSTING_IP_POOL_START=10.32.0.10
+HOSTING_IP_POOL_END=10.32.0.254
+
+# --- Öffentliche IPs (ohne Traefik) ---
+HOSTING_PUBLIC_POOL_START=185.45.149.246
+HOSTING_PUBLIC_POOL_END=185.45.149.252
+HOSTING_PUBLIC_GATEWAY=185.45.149.241
+HOSTING_PUBLIC_CIDR=28
+
+# --- VMID-Pool ---
+VMID_RANGE_START=2000
+VMID_RANGE_END=2999
+VMID_RELEASE_AFTER_HOURS=48
+
+# --- Snapshots / Backups / ISO ---
+SNAPSHOT_RETENTION_HOURS=48
+SNAPSHOT_AUTO_BEFORE_DESTRUCTIVE=true
+MAX_BACKUPS_PER_CUSTOMER=4
+BACKUPS_ENABLED=false
+
+ISO_UPLOAD_ENABLED=true
+ISO_UPLOAD_MAX_PER_CUSTOMER=1
+ISO_UPLOAD_MAX_SIZE_MB=10240
+ISO_UPLOAD_RETENTION_HOURS=48
+
+# --- WHMCS API ---
+WHMCS_ENABLED=true
+WHMCS_API_SECRET=
+WHMCS_ALLOWED_IPS=
+WHMCS_REPLAY_WINDOW=300
+
+# --- Plesk DNS ---
+PLESK_URL=https://plesk.example.com:8443
+PLESK_USER=admin
+PLESK_PASS=
+PLESK_BASE_DOMAIN=hexahost.de
+PLESK_TIMEOUT=30
+PLESK_VERIFY_SSL=true
+PLESK_MAIL_ENABLED=true
+
+# --- Traefik (File Provider) ---
+TRAEFIK_DYNAMIC_CONFIG_PATH=/etc/traefik/dynamic/customers.yaml
+TRAEFIK_ENTRYPOINT=websecure
+TRAEFIK_CERT_RESOLVER=letsencrypt
+TRAEFIK_BACKEND_PORT=80
+TRAEFIK_PUBLIC_IP=185.45.149.98
+TRAEFIK_RELOAD_COMMAND="docker exec traefik kill -HUP 1"
+
+# --- Sicherheit / Konsole ---
+ADMIN_2FA_REQUIRED=true
+LOGIN_MAX_ATTEMPTS=5
+VM_POWER_RATE_LIMIT=20
+
+CONSOLE_PROXY_ENABLED=false
+CONSOLE_PROXY_WS_URL=wss://panel.hexahost.de/ws/vm
+CONSOLE_PROXY_SECRET=
+CONSOLE_PROXY_VALIDATE_URL=https://panel.hexahost.de/api/console/validate
+
+# --- Benachrichtigungen ---
+HOSTING_WEBHOOK_URL=
+
+# --- Standard-Ressourcen neuer VMs ---
+HOSTING_DEFAULT_CPU=2
+HOSTING_DEFAULT_RAM=2048
+HOSTING_DEFAULT_DISK=32
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..fcb21d3
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,11 @@
+* text=auto eol=lf
+
+*.blade.php diff=html
+*.css diff=css
+*.html diff=html
+*.md diff=markdown
+*.php diff=php
+
+/.github export-ignore
+CHANGELOG.md export-ignore
+.styleci.yml export-ignore
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..7be55e2
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,27 @@
+*.log
+.DS_Store
+.env
+.env.backup
+.env.production
+.phpactor.json
+.phpunit.result.cache
+/.codex
+/.cursor/
+/.idea
+/.nova
+/.phpunit.cache
+/.vscode
+/.zed
+/auth.json
+/node_modules
+/public/build
+/public/fonts-manifest.dev.json
+/public/hot
+/public/storage
+/storage/*.key
+/storage/pail
+/vendor
+_ide_helper.php
+Homestead.json
+Homestead.yaml
+Thumbs.db
diff --git a/.npmrc b/.npmrc
new file mode 100644
index 0000000..495a6af
--- /dev/null
+++ b/.npmrc
@@ -0,0 +1,2 @@
+ignore-scripts=true
+audit=true
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..5ad1377
--- /dev/null
+++ b/README.md
@@ -0,0 +1,58 @@
+

+
+
+
+
+
+
+
+
+## About Laravel
+
+Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
+
+- [Simple, fast routing engine](https://laravel.com/docs/routing).
+- [Powerful dependency injection container](https://laravel.com/docs/container).
+- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
+- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
+- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
+- [Robust background job processing](https://laravel.com/docs/queues).
+- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
+
+Laravel is accessible, powerful, and provides tools required for large, robust applications.
+
+## Learning Laravel
+
+Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
+
+In addition, [Laracasts](https://laracasts.com) contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
+
+You can also watch bite-sized lessons with real-world projects on [Laravel Learn](https://laravel.com/learn), where you will be guided through building a Laravel application from scratch while learning PHP fundamentals.
+
+## Agentic Development
+
+Laravel's predictable structure and conventions make it ideal for AI coding agents like Claude Code, Cursor, and GitHub Copilot. Install [Laravel Boost](https://laravel.com/docs/ai) to supercharge your AI workflow:
+
+```bash
+composer require laravel/boost --dev
+
+php artisan boost:install
+```
+
+Boost provides your agent 15+ tools and skills that help agents build Laravel applications while following best practices.
+
+## Contributing
+
+Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
+
+## Code of Conduct
+
+In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
+
+## Security Vulnerabilities
+
+If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.
+
+## License
+
+The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
diff --git a/app/Console/Commands/CollectVmMetricsCommand.php b/app/Console/Commands/CollectVmMetricsCommand.php
new file mode 100644
index 0000000..6ebc1f1
--- /dev/null
+++ b/app/Console/Commands/CollectVmMetricsCommand.php
@@ -0,0 +1,21 @@
+collectAll();
+ $this->info("Metriken für {$count} VM(s) erfasst.");
+
+ return self::SUCCESS;
+ }
+}
diff --git a/app/Console/Commands/PruneSnapshotsCommand.php b/app/Console/Commands/PruneSnapshotsCommand.php
new file mode 100644
index 0000000..7b175ea
--- /dev/null
+++ b/app/Console/Commands/PruneSnapshotsCommand.php
@@ -0,0 +1,21 @@
+pruneExpired();
+ $this->info("{$count} Snapshot(s) bereinigt.");
+
+ return self::SUCCESS;
+ }
+}
diff --git a/app/Console/Commands/PurgeExpiredIsoUploadsCommand.php b/app/Console/Commands/PurgeExpiredIsoUploadsCommand.php
new file mode 100644
index 0000000..aa4a603
--- /dev/null
+++ b/app/Console/Commands/PurgeExpiredIsoUploadsCommand.php
@@ -0,0 +1,35 @@
+where('expires_at', '<=', now())
+ ->get();
+
+ foreach ($expired as $upload) {
+ try {
+ // Proxmox delete via storage API when upload service is wired
+ Log::info('ISO upload expired', ['volid' => $upload->volid, 'user_id' => $upload->user_id]);
+ } catch (\Throwable $e) {
+ Log::warning('ISO purge failed', ['id' => $upload->id, 'error' => $e->getMessage()]);
+ }
+ $upload->delete();
+ }
+
+ $this->info("Purged {$expired->count()} expired ISO upload(s).");
+
+ return self::SUCCESS;
+ }
+}
diff --git a/app/Console/Commands/RebuildTraefikRoutesCommand.php b/app/Console/Commands/RebuildTraefikRoutesCommand.php
new file mode 100644
index 0000000..7a9c686
--- /dev/null
+++ b/app/Console/Commands/RebuildTraefikRoutesCommand.php
@@ -0,0 +1,32 @@
+where('status', 'active')
+ ->whereNotNull('ip_address')
+ ->get();
+
+ $traefik->rebuildAllRoutes($customers);
+
+ if ($this->option('reload')) {
+ $traefik->reload();
+ }
+
+ $this->info("Rebuilt routes for {$customers->count()} active customers.");
+
+ return self::SUCCESS;
+ }
+}
diff --git a/app/Console/Commands/ReleaseVmidReservationsCommand.php b/app/Console/Commands/ReleaseVmidReservationsCommand.php
new file mode 100644
index 0000000..3eea824
--- /dev/null
+++ b/app/Console/Commands/ReleaseVmidReservationsCommand.php
@@ -0,0 +1,21 @@
+releaseDue();
+ $this->info("Released {$count} VMID reservation(s).");
+
+ return self::SUCCESS;
+ }
+}
diff --git a/app/Enums/IpPoolType.php b/app/Enums/IpPoolType.php
new file mode 100644
index 0000000..5c8ca0b
--- /dev/null
+++ b/app/Enums/IpPoolType.php
@@ -0,0 +1,17 @@
+ 'Privat (intern)',
+ self::Public => 'Öffentlich',
+ };
+ }
+}
diff --git a/app/Enums/UserRole.php b/app/Enums/UserRole.php
new file mode 100644
index 0000000..ca2deb6
--- /dev/null
+++ b/app/Enums/UserRole.php
@@ -0,0 +1,17 @@
+ 'Administrator',
+ self::Customer => 'Kunde',
+ };
+ }
+}
diff --git a/app/Enums/VmPowerAction.php b/app/Enums/VmPowerAction.php
new file mode 100644
index 0000000..6eefde0
--- /dev/null
+++ b/app/Enums/VmPowerAction.php
@@ -0,0 +1,33 @@
+ 'Starten',
+ self::Shutdown => 'Herunterfahren (ACPI)',
+ self::Stop => 'Stoppen (Force)',
+ self::Reboot => 'Neustart',
+ self::Reset => 'Reset (Hard)',
+ };
+ }
+
+ public function requiresRunning(): bool
+ {
+ return in_array($this, [self::Shutdown, self::Stop, self::Reboot, self::Reset], true);
+ }
+
+ public function requiresStopped(): bool
+ {
+ return $this === self::Start;
+ }
+}
diff --git a/app/Exceptions/Hosting/PleskException.php b/app/Exceptions/Hosting/PleskException.php
new file mode 100644
index 0000000..6f012ea
--- /dev/null
+++ b/app/Exceptions/Hosting/PleskException.php
@@ -0,0 +1,7 @@
+header('X-Console-Proxy-Secret') !== $secret) {
+ return response()->json(['error' => 'forbidden'], 403);
+ }
+
+ $data = \Illuminate\Support\Facades\Cache::get($management->consoleCacheKey($token));
+ if (! $data) {
+ return response()->json(['error' => 'expired'], 410);
+ }
+
+ return response()->json([
+ 'proxmox_ws_url' => $data['ws_url'],
+ 'vmid' => $data['vmid'],
+ 'node' => $data['node'],
+ ]);
+ }
+}
diff --git a/app/Http/Controllers/Api/WhmcsServiceController.php b/app/Http/Controllers/Api/WhmcsServiceController.php
new file mode 100644
index 0000000..5b979b3
--- /dev/null
+++ b/app/Http/Controllers/Api/WhmcsServiceController.php
@@ -0,0 +1,162 @@
+where('slug', $request->validated('plan_slug'))->firstOrFail();
+ $domain = $request->domain();
+
+ if ($domain && Customer::query()->where('domain', $domain)->exists()) {
+ return response()->json(['error' => 'Domain already taken.'], 422);
+ }
+
+ $result = DB::transaction(function () use ($request, $plan, $domain) {
+ $user = User::query()->updateOrCreate(
+ ['whmcs_client_id' => $request->integer('whmcs_client_id')],
+ [
+ 'name' => $request->validated('client_name'),
+ 'email' => $request->validated('client_email'),
+ 'password' => Hash::make(Str::random(32)),
+ 'role' => UserRole::Customer,
+ 'is_active' => true,
+ ],
+ );
+
+ $customer = Customer::query()->create([
+ 'user_id' => $user->id,
+ 'hosting_plan_id' => $plan->id,
+ 'name' => $request->validated('hostname'),
+ 'domain' => $domain ?? 'direct-'.Str::slug($request->validated('hostname')).'-'.Str::lower(Str::random(6)).'.internal',
+ 'behind_traefik' => $request->boolean('behind_traefik', true),
+ 'provision_mode' => $request->validated('provision_mode'),
+ 'attached_iso' => $request->validated('iso_volid'),
+ 'cpu' => $plan->cpu,
+ 'ram' => $plan->ram,
+ 'disk' => $plan->disk,
+ 'status' => 'pending',
+ 'provisioning_step' => 'queued',
+ ]);
+
+ $whmcsService = WhmcsService::query()->create([
+ 'whmcs_service_id' => $request->integer('whmcs_service_id'),
+ 'whmcs_client_id' => $request->integer('whmcs_client_id'),
+ 'whmcs_order_id' => $request->input('whmcs_order_id'),
+ 'customer_id' => $customer->id,
+ 'user_id' => $user->id,
+ 'hosting_plan_id' => $plan->id,
+ 'status' => 'provisioning',
+ 'config' => $request->only([
+ 'provision_mode', 'template_slug', 'iso_volid', 'behind_traefik', 'subdomain',
+ ]),
+ ]);
+
+ $customer->update(['whmcs_service_id' => $whmcsService->id]);
+
+ $vmid = app(VmidReservationService::class)->reserveForCustomer($customer);
+ $customer->update(['vmid' => $vmid]);
+
+ ProvisionCustomerJob::dispatch($customer->id);
+
+ return compact('customer', 'user', 'whmcsService', 'vmid');
+ });
+
+ return response()->json([
+ 'message' => 'Provisioning queued.',
+ 'customer_id' => $result['customer']->id,
+ 'vmid' => $result['vmid'],
+ 'panel_url' => config('hosting.panel.url'),
+ ], 202);
+ }
+
+ public function suspend(Request $request, int $whmcsServiceId): JsonResponse
+ {
+ $service = $this->resolveService($whmcsServiceId);
+ $customer = $service->customer;
+
+ if ($customer?->vmid) {
+ app(\App\Services\Hosting\Proxmox\ProxmoxClient::class)->stopVM((int) $customer->vmid);
+ }
+
+ $service->update(['status' => 'suspended']);
+ $customer?->update(['status' => 'failed', 'provisioning_step' => 'suspended']);
+
+ return response()->json(['message' => 'Service suspended.']);
+ }
+
+ public function unsuspend(Request $request, int $whmcsServiceId): JsonResponse
+ {
+ $service = $this->resolveService($whmcsServiceId);
+ $customer = $service->customer;
+
+ if ($customer?->vmid) {
+ app(\App\Services\Hosting\Proxmox\ProxmoxClient::class)->startVM((int) $customer->vmid);
+ $customer->update(['status' => 'active', 'provisioning_step' => 'completed']);
+ }
+
+ $service->update(['status' => 'active']);
+
+ return response()->json(['message' => 'Service unsuspended.']);
+ }
+
+ public function terminate(Request $request, int $whmcsServiceId, DeprovisionService $deprovision): JsonResponse
+ {
+ $service = $this->resolveService($whmcsServiceId);
+ $customer = $service->customer;
+
+ if ($customer) {
+ $deprovision->terminatePermanently($customer);
+ }
+
+ $service->update(['status' => 'terminated', 'customer_id' => null]);
+
+ return response()->json([
+ 'message' => 'Service terminated. VMID will be released after configured retention.',
+ ]);
+ }
+
+ public function status(int $whmcsServiceId): JsonResponse
+ {
+ $service = $this->resolveService($whmcsServiceId);
+ $service->load('customer');
+
+ return response()->json([
+ 'whmcs_service_id' => $service->whmcs_service_id,
+ 'status' => $service->status,
+ 'customer' => $service->customer ? [
+ 'id' => $service->customer->id,
+ 'name' => $service->customer->name,
+ 'vmid' => $service->customer->vmid,
+ 'status' => $service->customer->status,
+ 'provisioning_step' => $service->customer->provisioning_step,
+ 'ip_address' => $service->customer->ip_address,
+ 'domain' => $service->customer->domain,
+ ] : null,
+ ]);
+ }
+
+ private function resolveService(int $whmcsServiceId): WhmcsService
+ {
+ return WhmcsService::query()
+ ->where('whmcs_service_id', $whmcsServiceId)
+ ->firstOrFail();
+ }
+}
diff --git a/app/Http/Controllers/Auth/LoginController.php b/app/Http/Controllers/Auth/LoginController.php
new file mode 100644
index 0000000..76ee49e
--- /dev/null
+++ b/app/Http/Controllers/Auth/LoginController.php
@@ -0,0 +1,50 @@
+validate([
+ 'email' => ['required', 'email'],
+ 'password' => ['required'],
+ ]);
+
+ if (! Auth::attempt($credentials, $request->boolean('remember'))) {
+ return back()->withErrors(['email' => 'Ungültige Anmeldedaten.'])->onlyInput('email');
+ }
+
+ $user = Auth::user();
+ if (! $user->is_active) {
+ Auth::logout();
+
+ return back()->withErrors(['email' => 'Ihr Konto ist deaktiviert.']);
+ }
+
+ $request->session()->regenerate();
+ $request->session()->forget('two_factor_passed');
+
+ return redirect()->intended(route('dashboard'));
+ }
+
+ public function destroy(Request $request): RedirectResponse
+ {
+ Auth::logout();
+ $request->session()->invalidate();
+ $request->session()->regenerateToken();
+
+ return redirect()->route('login');
+ }
+}
diff --git a/app/Http/Controllers/Auth/TwoFactorController.php b/app/Http/Controllers/Auth/TwoFactorController.php
new file mode 100644
index 0000000..d32723f
--- /dev/null
+++ b/app/Http/Controllers/Auth/TwoFactorController.php
@@ -0,0 +1,65 @@
+session()->get('two_factor_setup_secret');
+ if (! $secret) {
+ $secret = $twoFactor->generateSecret();
+ $request->session()->put('two_factor_setup_secret', $secret);
+ }
+
+ $qrUrl = $twoFactor->qrUrl($request->user(), $secret);
+ $writer = new Writer(new ImageRenderer(new RendererStyle(200), new SvgImageBackEnd));
+ $qrSvg = $writer->writeString($qrUrl);
+
+ return view('auth.two-factor-setup', [
+ 'secret' => $secret,
+ 'qrSvg' => $qrSvg,
+ ]);
+ }
+
+ public function enable(Request $request, TwoFactorService $twoFactor): RedirectResponse
+ {
+ $request->validate(['code' => ['required', 'string', 'size:6']]);
+ $secret = $request->session()->pull('two_factor_setup_secret');
+ if (! $secret || ! $twoFactor->enable($request->user(), $secret, $request->input('code'))) {
+ return back()->withErrors(['code' => 'Ungültiger Code. Bitte erneut versuchen.']);
+ }
+
+ $request->session()->put('two_factor_passed', true);
+
+ return redirect()->route('dashboard')->with('success', 'Zwei-Faktor-Authentifizierung aktiviert.');
+ }
+
+ public function challenge(): View
+ {
+ return view('auth.two-factor-challenge');
+ }
+
+ public function verifyChallenge(Request $request, TwoFactorService $twoFactor): RedirectResponse
+ {
+ $request->validate(['code' => ['required', 'string']]);
+
+ if (! $twoFactor->verify($request->user(), $request->input('code'))) {
+ return back()->withErrors(['code' => 'Ungültiger Authentifizierungscode.']);
+ }
+
+ $request->session()->put('two_factor_passed', true);
+
+ return redirect()->intended(route('dashboard'));
+ }
+}
diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php
new file mode 100644
index 0000000..e7f7c94
--- /dev/null
+++ b/app/Http/Controllers/Controller.php
@@ -0,0 +1,10 @@
+domain();
+
+ $customer = Customer::query()->create([
+ 'name' => $request->validated('name'),
+ 'domain' => $domain,
+ 'cpu' => $request->integer('cpu', config('hosting.defaults.cpu')),
+ 'ram' => $request->integer('ram', config('hosting.defaults.ram')),
+ 'disk' => $request->integer('disk', config('hosting.defaults.disk')),
+ 'status' => 'pending',
+ 'provisioning_step' => 'queued',
+ ]);
+
+ ProvisionCustomerJob::dispatch($customer->id);
+
+ return response()->json([
+ 'message' => 'Provisioning started.',
+ 'customer' => $customer,
+ ], 202);
+ }
+
+ public function show(Customer $customer): JsonResponse
+ {
+ return response()->json(['customer' => $customer]);
+ }
+
+ public function index(): JsonResponse
+ {
+ return response()->json([
+ 'customers' => Customer::query()->latest()->get(),
+ ]);
+ }
+
+ public function destroy(Customer $customer): JsonResponse
+ {
+ if ($customer->status === 'pending' && $customer->provisioning_step === 'queued') {
+ $customer->delete();
+
+ return response()->json(['message' => 'Queued customer removed.']);
+ }
+
+ return response()->json([
+ 'message' => 'Use deprovision endpoint for active customers.',
+ ], 422);
+ }
+}
diff --git a/app/Http/Controllers/Web/Admin/SystemHealthController.php b/app/Http/Controllers/Web/Admin/SystemHealthController.php
new file mode 100644
index 0000000..52457cf
--- /dev/null
+++ b/app/Http/Controllers/Web/Admin/SystemHealthController.php
@@ -0,0 +1,17 @@
+ $health->checks(),
+ ]);
+ }
+}
diff --git a/app/Http/Controllers/Web/Admin/VmTemplateController.php b/app/Http/Controllers/Web/Admin/VmTemplateController.php
new file mode 100644
index 0000000..2ff02bd
--- /dev/null
+++ b/app/Http/Controllers/Web/Admin/VmTemplateController.php
@@ -0,0 +1,72 @@
+orderBy('name')->get();
+
+ return view('admin.templates.index', compact('templates'));
+ }
+
+ public function create(): View
+ {
+ return view('admin.templates.create');
+ }
+
+ public function store(Request $request): RedirectResponse
+ {
+ $data = $request->validate([
+ 'slug' => ['required', 'string', 'max:64', 'alpha_dash', 'unique:vm_templates,slug'],
+ 'name' => ['required', 'string', 'max:120'],
+ 'proxmox_template_vmid' => ['required', 'integer', 'min:100'],
+ 'os_family' => ['nullable', 'string', 'max:32'],
+ 'is_active' => ['boolean'],
+ ]);
+
+ VmTemplate::query()->create([
+ ...$data,
+ 'is_active' => $request->boolean('is_active', true),
+ ]);
+
+ return redirect()->route('admin.templates.index')->with('success', 'Template angelegt.');
+ }
+
+ public function edit(VmTemplate $template): View
+ {
+ return view('admin.templates.edit', compact('template'));
+ }
+
+ public function update(Request $request, VmTemplate $template): RedirectResponse
+ {
+ $data = $request->validate([
+ 'slug' => ['required', 'string', 'max:64', 'alpha_dash', 'unique:vm_templates,slug,'.$template->id],
+ 'name' => ['required', 'string', 'max:120'],
+ 'proxmox_template_vmid' => ['required', 'integer', 'min:100'],
+ 'os_family' => ['nullable', 'string', 'max:32'],
+ 'is_active' => ['boolean'],
+ ]);
+
+ $template->update([
+ ...$data,
+ 'is_active' => $request->boolean('is_active', true),
+ ]);
+
+ return redirect()->route('admin.templates.index')->with('success', 'Template aktualisiert.');
+ }
+
+ public function destroy(VmTemplate $template): RedirectResponse
+ {
+ $template->delete();
+
+ return redirect()->route('admin.templates.index')->with('success', 'Template gelöscht.');
+ }
+}
diff --git a/app/Http/Controllers/Web/DashboardController.php b/app/Http/Controllers/Web/DashboardController.php
new file mode 100644
index 0000000..489a7e4
--- /dev/null
+++ b/app/Http/Controllers/Web/DashboardController.php
@@ -0,0 +1,45 @@
+user();
+ $vmQuery = Customer::query()->forUser($user);
+
+ $stats = [
+ 'vms_total' => (clone $vmQuery)->count(),
+ 'vms_active' => (clone $vmQuery)->where('status', 'active')->count(),
+ 'vms_pending' => (clone $vmQuery)->where('status', 'pending')->count(),
+ 'vms_failed' => (clone $vmQuery)->where('status', 'failed')->count(),
+ ];
+
+ $pools = IpPool::query()
+ ->where('is_active', true)
+ ->orderBy('type')
+ ->get();
+
+ $recentVms = Customer::query()
+ ->forUser($user)
+ ->with(['owner', 'ipPool'])
+ ->latest()
+ ->limit(8)
+ ->get();
+
+ return view('dashboard', [
+ 'stats' => $stats,
+ 'pools' => $pools,
+ 'recentVms' => $recentVms,
+ 'usersCount' => $user->isAdmin() ? User::query()->count() : null,
+ ]);
+ }
+}
diff --git a/app/Http/Controllers/Web/IpPoolController.php b/app/Http/Controllers/Web/IpPoolController.php
new file mode 100644
index 0000000..cd32f19
--- /dev/null
+++ b/app/Http/Controllers/Web/IpPoolController.php
@@ -0,0 +1,123 @@
+authorize('viewAny', IpPool::class);
+
+ $pools = IpPool::query()
+ ->withCount(['vms' => fn ($q) => $q->whereIn('status', ['pending', 'active'])])
+ ->orderBy('type')
+ ->orderBy('name')
+ ->get()
+ ->map(function (IpPool $pool) {
+ $pool->setAttribute('usage_percent', $pool->totalIps() > 0
+ ? round(($pool->usedIpsCount() / $pool->totalIps()) * 100, 1)
+ : 0);
+
+ return $pool;
+ });
+
+ $assignments = Customer::query()
+ ->forUser($request->user())
+ ->with(['owner', 'ipPool'])
+ ->whereIn('status', ['pending', 'active'])
+ ->where(fn ($q) => $q->whereNotNull('ip_address')->orWhereNotNull('public_ip'))
+ ->orderBy('name')
+ ->get();
+
+ return view('ip-pools.index', compact('pools', 'assignments'));
+ }
+
+ public function create(): View
+ {
+ $this->authorize('create', IpPool::class);
+
+ return view('ip-pools.create', ['types' => IpPoolType::cases()]);
+ }
+
+ public function store(Request $request): RedirectResponse
+ {
+ $this->authorize('create', IpPool::class);
+
+ $data = $request->validate([
+ 'name' => ['required', 'string', 'max:100'],
+ 'type' => ['required', Rule::enum(IpPoolType::class)],
+ 'start_ip' => ['required', 'ip'],
+ 'end_ip' => ['required', 'ip'],
+ 'gateway' => ['nullable', 'ip'],
+ 'cidr' => ['required', 'integer', 'min:8', 'max:32'],
+ 'description' => ['nullable', 'string', 'max:500'],
+ 'is_active' => ['boolean'],
+ ]);
+
+ if (ip2long($data['start_ip']) > ip2long($data['end_ip'])) {
+ return back()->withErrors(['end_ip' => 'End-IP muss größer als Start-IP sein.'])->withInput();
+ }
+
+ IpPool::query()->create([
+ ...$data,
+ 'is_active' => $request->boolean('is_active', true),
+ ]);
+
+ return redirect()->route('ip-pools.index')->with('success', 'IP-Pool erstellt.');
+ }
+
+ public function edit(IpPool $ipPool): View
+ {
+ $this->authorize('update', $ipPool);
+
+ return view('ip-pools.edit', [
+ 'pool' => $ipPool,
+ 'types' => IpPoolType::cases(),
+ ]);
+ }
+
+ public function update(Request $request, IpPool $ipPool): RedirectResponse
+ {
+ $this->authorize('update', $ipPool);
+
+ $data = $request->validate([
+ 'name' => ['required', 'string', 'max:100'],
+ 'type' => ['required', Rule::enum(IpPoolType::class)],
+ 'start_ip' => ['required', 'ip'],
+ 'end_ip' => ['required', 'ip'],
+ 'gateway' => ['nullable', 'ip'],
+ 'cidr' => ['required', 'integer', 'min:8', 'max:32'],
+ 'description' => ['nullable', 'string', 'max:500'],
+ 'is_active' => ['boolean'],
+ ]);
+
+ $ipPool->update([
+ ...$data,
+ 'is_active' => $request->boolean('is_active'),
+ ]);
+
+ return redirect()->route('ip-pools.index')->with('success', 'IP-Pool aktualisiert.');
+ }
+
+ public function destroy(IpPool $ipPool): RedirectResponse
+ {
+ $this->authorize('delete', $ipPool);
+
+ if ($ipPool->vms()->whereIn('status', ['pending', 'active'])->exists()) {
+ return back()->withErrors(['pool' => 'Pool wird noch von aktiven VMs verwendet.']);
+ }
+
+ $ipPool->delete();
+
+ return redirect()->route('ip-pools.index')->with('success', 'IP-Pool gelöscht.');
+ }
+}
diff --git a/app/Http/Controllers/Web/IsoUploadController.php b/app/Http/Controllers/Web/IsoUploadController.php
new file mode 100644
index 0000000..c5508f4
--- /dev/null
+++ b/app/Http/Controllers/Web/IsoUploadController.php
@@ -0,0 +1,38 @@
+where('user_id', $request->user()->id)
+ ->latest()
+ ->get();
+
+ return view('iso-uploads.index', compact('uploads'));
+ }
+
+ public function store(Request $request, IsoUploadService $service): RedirectResponse
+ {
+ $request->validate([
+ 'iso' => ['required', 'file', 'mimes:iso', 'max:'.((int) config('hosting.iso_upload.max_size_mb', 10240) * 1024)],
+ ]);
+
+ try {
+ $service->upload($request->user(), $request->file('iso'));
+ } catch (\Throwable $e) {
+ return back()->withErrors(['iso' => $e->getMessage()]);
+ }
+
+ return redirect()->route('iso-uploads.index')->with('success', 'ISO hochgeladen.');
+ }
+}
diff --git a/app/Http/Controllers/Web/UserController.php b/app/Http/Controllers/Web/UserController.php
new file mode 100644
index 0000000..11722ff
--- /dev/null
+++ b/app/Http/Controllers/Web/UserController.php
@@ -0,0 +1,106 @@
+authorize('viewAny', User::class);
+
+ $users = User::query()->withCount('vms')->orderBy('name')->paginate(20);
+
+ return view('users.index', compact('users'));
+ }
+
+ public function create(): View
+ {
+ $this->authorize('create', User::class);
+
+ return view('users.create', ['roles' => UserRole::cases()]);
+ }
+
+ public function store(Request $request): RedirectResponse
+ {
+ $this->authorize('create', User::class);
+
+ $data = $request->validate([
+ 'name' => ['required', 'string', 'max:100'],
+ 'email' => ['required', 'email', 'max:255', 'unique:users,email'],
+ 'password' => ['required', 'confirmed', Password::defaults()],
+ 'role' => ['required', Rule::enum(UserRole::class)],
+ 'is_active' => ['boolean'],
+ ]);
+
+ User::query()->create([
+ 'name' => $data['name'],
+ 'email' => $data['email'],
+ 'password' => Hash::make($data['password']),
+ 'role' => $data['role'],
+ 'is_active' => $request->boolean('is_active', true),
+ ]);
+
+ return redirect()->route('users.index')->with('success', 'Benutzer erstellt.');
+ }
+
+ public function edit(User $user): View
+ {
+ $this->authorize('update', $user);
+
+ return view('users.edit', [
+ 'user' => $user,
+ 'roles' => UserRole::cases(),
+ ]);
+ }
+
+ public function update(Request $request, User $user): RedirectResponse
+ {
+ $this->authorize('update', $user);
+
+ $data = $request->validate([
+ 'name' => ['required', 'string', 'max:100'],
+ 'email' => ['required', 'email', 'max:255', Rule::unique('users')->ignore($user->id)],
+ 'password' => ['nullable', 'confirmed', Password::defaults()],
+ 'role' => ['required', Rule::enum(UserRole::class)],
+ 'is_active' => ['boolean'],
+ ]);
+
+ $user->fill([
+ 'name' => $data['name'],
+ 'email' => $data['email'],
+ 'role' => $data['role'],
+ 'is_active' => $request->boolean('is_active'),
+ ]);
+
+ if (! empty($data['password'])) {
+ $user->password = Hash::make($data['password']);
+ }
+
+ $user->save();
+
+ return redirect()->route('users.index')->with('success', 'Benutzer aktualisiert.');
+ }
+
+ public function destroy(User $user): RedirectResponse
+ {
+ $this->authorize('delete', $user);
+
+ if ($user->vms()->whereIn('status', ['pending', 'active'])->exists()) {
+ return back()->withErrors(['user' => 'Benutzer hat noch aktive VMs.']);
+ }
+
+ $user->delete();
+
+ return redirect()->route('users.index')->with('success', 'Benutzer gelöscht.');
+ }
+}
diff --git a/app/Http/Controllers/Web/VmBackupController.php b/app/Http/Controllers/Web/VmBackupController.php
new file mode 100644
index 0000000..cd2b3c9
--- /dev/null
+++ b/app/Http/Controllers/Web/VmBackupController.php
@@ -0,0 +1,24 @@
+authorize('manage', $vm);
+
+ try {
+ $backups->start($vm, auth()->user());
+ } catch (\Throwable $e) {
+ return back()->withErrors(['backup' => $e->getMessage()]);
+ }
+
+ return back()->with('success', 'Backup gestartet.');
+ }
+}
diff --git a/app/Http/Controllers/Web/VmConsoleController.php b/app/Http/Controllers/Web/VmConsoleController.php
new file mode 100644
index 0000000..6863ba7
--- /dev/null
+++ b/app/Http/Controllers/Web/VmConsoleController.php
@@ -0,0 +1,47 @@
+authorize('manage', $vm);
+
+ try {
+ $session = $management->createConsoleSession($vm, $request->user());
+ } catch (\Throwable $e) {
+ return view('vms.console-error', [
+ 'vm' => $vm,
+ 'error' => $e->getMessage(),
+ ]);
+ }
+
+ return view('vms.console', [
+ 'vm' => $vm,
+ 'token' => $session['token'],
+ 'wsUrl' => $session['ws_url'],
+ 'expiresAt' => $session['expires_at'],
+ ]);
+ }
+
+ public function show(Request $request, string $token, VmManagementService $management): View
+ {
+ $session = $management->getConsoleSession($token, $request->user());
+ $vm = Customer::query()->findOrFail($session['customer_id']);
+ $this->authorize('view', $vm);
+
+ return view('vms.console', [
+ 'vm' => $vm,
+ 'token' => $token,
+ 'wsUrl' => $session['ws_url'],
+ 'expiresAt' => now()->addMinutes(5)->timestamp,
+ ]);
+ }
+}
diff --git a/app/Http/Controllers/Web/VmController.php b/app/Http/Controllers/Web/VmController.php
new file mode 100644
index 0000000..59bbccb
--- /dev/null
+++ b/app/Http/Controllers/Web/VmController.php
@@ -0,0 +1,215 @@
+authorize('viewAny', Customer::class);
+
+ $vms = Customer::query()
+ ->forUser($request->user())
+ ->with(['owner', 'ipPool'])
+ ->when($request->query('status'), fn ($q, $status) => $q->where('status', $status))
+ ->latest()
+ ->paginate(15)
+ ->withQueryString();
+
+ return view('vms.index', compact('vms'));
+ }
+
+ public function create(Request $request): View
+ {
+ $this->authorize('create', Customer::class);
+
+ $isos = [];
+ try {
+ $isos = app(ProxmoxClient::class)->listIsos();
+ } catch (\Throwable) {
+ // Proxmox nicht erreichbar – Formular bleibt nutzbar
+ }
+
+ return view('vms.create', [
+ 'privatePools' => IpPool::query()->where('type', 'private')->where('is_active', true)->get(),
+ 'customers' => $request->user()->isAdmin()
+ ? User::query()->where('role', 'customer')->orderBy('name')->get()
+ : collect(),
+ 'deviceTypes' => VmDevice::typesFor($request->user()),
+ 'templates' => \App\Models\VmTemplate::query()->where('is_active', true)->orderBy('name')->get(),
+ 'isos' => $isos,
+ ]);
+ }
+
+ public function store(StoreVmRequest $request): RedirectResponse
+ {
+ $domain = $request->domain();
+
+ if ($domain && Customer::query()->where('domain', $domain)->exists()) {
+ return back()->withErrors(['subdomain' => 'Diese Subdomain ist bereits vergeben.'])->withInput();
+ }
+
+ if (! $domain) {
+ $domain = 'direct-'.Str::slug($request->validated('name')).'-'.Str::lower(Str::random(6)).'.internal';
+ }
+
+ $vm = Customer::query()->create([
+ 'user_id' => $request->ownerId(),
+ 'name' => $request->validated('name'),
+ 'domain' => $domain,
+ 'behind_traefik' => $request->boolean('behind_traefik'),
+ 'ip_pool_id' => $request->input('ip_pool_id'),
+ 'cpu' => $request->integer('cpu'),
+ 'ram' => $request->integer('ram'),
+ 'disk' => $request->integer('disk'),
+ 'attached_iso' => $request->validated('install_iso'),
+ 'status' => 'pending',
+ 'provisioning_step' => 'queued',
+ ]);
+
+ $this->syncDevices($vm, $request->input('devices', []));
+
+ ProvisionCustomerJob::dispatch($vm->id);
+
+ return redirect()
+ ->route('vms.show', $vm)
+ ->with('success', 'VM-Provisioning wurde gestartet.');
+ }
+
+ public function show(Request $request, Customer $vm): View
+ {
+ $this->authorize('view', $vm);
+
+ $vm->load([
+ 'owner', 'ipPool', 'devices',
+ 'snapshots' => fn ($q) => $q->latest(),
+ 'backups' => fn ($q) => $q->latest()->limit(10),
+ 'firewallRules',
+ 'metrics' => fn ($q) => $q->limit(48),
+ 'activityLogs' => fn ($q) => $q->limit(15)->with('user'),
+ ]);
+
+ $isos = [];
+ $liveStatus = null;
+
+ if ($vm->vmid && $vm->status === 'active') {
+ try {
+ $proxmox = app(ProxmoxClient::class);
+ $isos = $proxmox->listIsos();
+ } catch (\Throwable) {
+ //
+ }
+
+ try {
+ $proxmox ??= app(ProxmoxClient::class);
+ $liveStatus = $proxmox->normalizeLiveStatus($proxmox->getVMStatus((int) $vm->vmid));
+ $vm->update([
+ 'proxmox_status' => $liveStatus['status'],
+ 'proxmox_uptime' => $liveStatus['uptime'],
+ 'proxmox_status_at' => now(),
+ ]);
+ } catch (\Throwable) {
+ //
+ }
+ }
+
+ return view('vms.show', compact('vm', 'isos', 'liveStatus'));
+ }
+
+ public function edit(Request $request, Customer $vm): View
+ {
+ $this->authorize('update', $vm);
+
+ $vm->load('devices');
+
+ return view('vms.edit', [
+ 'vm' => $vm,
+ 'deviceTypes' => VmDevice::typesFor($request->user()),
+ 'templates' => \App\Models\VmTemplate::query()->where('is_active', true)->orderBy('name')->get(),
+ ]);
+ }
+
+ public function update(UpdateVmRequest $request, Customer $vm): RedirectResponse
+ {
+ $vm->update($request->only(['name', 'cpu', 'ram', 'disk']));
+
+ if ($request->has('devices')) {
+ $vm->devices()->delete();
+ $this->syncDevices($vm, $request->input('devices', []));
+ }
+
+ if ($vm->vmid && $vm->status === 'active') {
+ try {
+ app(\App\Services\Hosting\Proxmox\ProxmoxClient::class)
+ ->updateVmResources((int) $vm->vmid, $vm->cpu, $vm->ram, $vm->disk);
+ app(\App\Services\Hosting\Proxmox\ProxmoxClient::class)
+ ->applyDevices((int) $vm->vmid, $vm->devices()->get());
+ } catch (\Throwable $e) {
+ return back()->with('warning', 'DB gespeichert, Proxmox-Update fehlgeschlagen: '.$e->getMessage());
+ }
+ }
+
+ return redirect()->route('vms.show', $vm)->with('success', 'VM-Konfiguration gespeichert.');
+ }
+
+ public function destroy(Request $request, Customer $vm, DeprovisionService $deprovision, \App\Services\Hosting\Snapshots\SnapshotService $snapshots): RedirectResponse
+ {
+ $this->authorize('delete', $vm);
+
+ if ($vm->vmid && $vm->status === 'active') {
+ try {
+ $snapshots->autoBeforeDestructive($vm, $request->user(), 'delete');
+ } catch (\Throwable) {
+ //
+ }
+ }
+
+ if ($vm->status === 'pending' && $vm->provisioning_step === 'queued') {
+ if ($vm->vmid) {
+ app(\App\Services\Hosting\Provisioning\VmidReservationService::class)
+ ->scheduleRelease((int) $vm->vmid, $vm);
+ }
+ $vm->devices()->delete();
+ $vm->delete();
+
+ return redirect()->route('vms.index')->with('success', 'VM-Eintrag gelöscht.');
+ }
+
+ $deprovision->removeVmOnly($vm, $request->user());
+
+ return redirect()->route('vms.index')->with('success', 'VM wurde entfernt. VMID wird nach 48h freigegeben.');
+ }
+
+ private function syncDevices(Customer $vm, array $devices): void
+ {
+ $allowed = array_keys(VmDevice::typesFor(auth()->user()));
+
+ foreach ($devices as $index => $device) {
+ if (empty($device['type']) || ! in_array($device['type'], $allowed, true)) {
+ continue;
+ }
+
+ $vm->devices()->create([
+ 'type' => $device['type'],
+ 'slot' => $device['slot'] ?? null,
+ 'config' => $device['config'] ?? [],
+ 'sort_order' => $index,
+ ]);
+ }
+ }
+}
diff --git a/app/Http/Controllers/Web/VmFirewallController.php b/app/Http/Controllers/Web/VmFirewallController.php
new file mode 100644
index 0000000..0cba5b3
--- /dev/null
+++ b/app/Http/Controllers/Web/VmFirewallController.php
@@ -0,0 +1,53 @@
+authorize('manage', $vm);
+
+ $data = $request->validate([
+ 'direction' => ['required', Rule::in(['in', 'out'])],
+ 'action' => ['required', Rule::in(['ACCEPT', 'DROP', 'REJECT'])],
+ 'protocol' => ['required', Rule::in(['tcp', 'udp', 'icmp'])],
+ 'port' => ['nullable', 'string', 'max:32'],
+ 'source' => ['nullable', 'string', 'max:64'],
+ ]);
+
+ $vm->firewallRules()->create([
+ ...$data,
+ 'sort_order' => $vm->firewallRules()->count(),
+ ]);
+
+ try {
+ $firewall->syncToProxmox($vm);
+ } catch (\Throwable $e) {
+ return back()->with('warning', 'Regel gespeichert, Proxmox-Sync fehlgeschlagen: '.$e->getMessage());
+ }
+
+ return back()->with('success', 'Firewall-Regel hinzugefügt.');
+ }
+
+ public function destroy(Customer $vm, int $rule, FirewallService $firewall): RedirectResponse
+ {
+ $this->authorize('manage', $vm);
+ $vm->firewallRules()->whereKey($rule)->delete();
+
+ try {
+ $firewall->syncToProxmox($vm);
+ } catch (\Throwable) {
+ //
+ }
+
+ return back()->with('success', 'Regel entfernt.');
+ }
+}
diff --git a/app/Http/Controllers/Web/VmIsoController.php b/app/Http/Controllers/Web/VmIsoController.php
new file mode 100644
index 0000000..10239bf
--- /dev/null
+++ b/app/Http/Controllers/Web/VmIsoController.php
@@ -0,0 +1,55 @@
+authorize('manage', $vm);
+
+ $data = $request->validate([
+ 'iso_volid' => ['required', 'string', 'max:255'],
+ ]);
+
+ $snapshots->autoBeforeDestructive($vm, $request->user(), 'iso-mount');
+
+ try {
+ $management->mountIso($vm, $data['iso_volid'], $request->user());
+ } catch (\Throwable $e) {
+ return back()->withErrors(['iso' => $e->getMessage()]);
+ }
+
+ return back()->with('success', 'ISO wurde eingebunden. VM ggf. neu starten, um vom Installationsmedium zu booten.');
+ }
+
+ public function destroy(Request $request, Customer $vm, VmManagementService $management): RedirectResponse
+ {
+ $this->authorize('manage', $vm);
+
+ try {
+ $management->unmountIso($vm, $request->user());
+ } catch (\Throwable $e) {
+ return back()->withErrors(['iso' => $e->getMessage()]);
+ }
+
+ return back()->with('success', 'ISO wurde entfernt.');
+ }
+
+ public function index(ProxmoxClient $proxmox): \Illuminate\Http\JsonResponse
+ {
+ try {
+ return response()->json(['isos' => $proxmox->listIsos()]);
+ } catch (\Throwable $e) {
+ return response()->json(['error' => $e->getMessage()], 502);
+ }
+ }
+}
diff --git a/app/Http/Controllers/Web/VmPowerController.php b/app/Http/Controllers/Web/VmPowerController.php
new file mode 100644
index 0000000..42357ee
--- /dev/null
+++ b/app/Http/Controllers/Web/VmPowerController.php
@@ -0,0 +1,36 @@
+authorize('manage', $vm);
+
+ $action = VmPowerAction::from($request->validate([
+ 'action' => ['required', Rule::enum(VmPowerAction::class)],
+ ])['action']);
+
+ if (in_array($action, [VmPowerAction::Stop, VmPowerAction::Reset, VmPowerAction::Reboot], true)) {
+ $snapshots->autoBeforeDestructive($vm, $request->user(), 'power-'.$action->value);
+ }
+
+ try {
+ $management->power($vm, $action, $request->user());
+ } catch (\Throwable $e) {
+ return back()->withErrors(['power' => $e->getMessage()]);
+ }
+
+ return back()->with('success', $action->label().' wurde ausgeführt.');
+ }
+}
diff --git a/app/Http/Controllers/Web/VmReinstallController.php b/app/Http/Controllers/Web/VmReinstallController.php
new file mode 100644
index 0000000..f8ad4e7
--- /dev/null
+++ b/app/Http/Controllers/Web/VmReinstallController.php
@@ -0,0 +1,26 @@
+authorize('manage', $vm);
+ $request->validate(['confirm' => ['required', 'in:REINSTALL']]);
+
+ try {
+ $reinstall->reinstall($vm, $request->user());
+ } catch (\Throwable $e) {
+ return back()->withErrors(['reinstall' => $e->getMessage()]);
+ }
+
+ return redirect()->route('vms.show', $vm)->with('success', 'Neuinstallation gestartet.');
+ }
+}
diff --git a/app/Http/Controllers/Web/VmSnapshotController.php b/app/Http/Controllers/Web/VmSnapshotController.php
new file mode 100644
index 0000000..e337a9f
--- /dev/null
+++ b/app/Http/Controllers/Web/VmSnapshotController.php
@@ -0,0 +1,55 @@
+authorize('manage', $vm);
+ $request->validate(['label' => ['nullable', 'string', 'max:64']]);
+
+ try {
+ $snapshots->create($vm, $request->user(), false, $request->input('label'));
+ } catch (\Throwable $e) {
+ return back()->withErrors(['snapshot' => $e->getMessage()]);
+ }
+
+ return back()->with('success', 'Snapshot erstellt.');
+ }
+
+ public function rollback(Customer $vm, VmSnapshot $snapshot, SnapshotService $snapshots): RedirectResponse
+ {
+ $this->authorize('manage', $vm);
+ abort_unless($snapshot->customer_id === $vm->id, 404);
+
+ try {
+ $snapshots->rollback($vm, $snapshot);
+ } catch (\Throwable $e) {
+ return back()->withErrors(['snapshot' => $e->getMessage()]);
+ }
+
+ return back()->with('success', 'Snapshot wiederhergestellt.');
+ }
+
+ public function destroy(Customer $vm, VmSnapshot $snapshot, SnapshotService $snapshots): RedirectResponse
+ {
+ $this->authorize('manage', $vm);
+ abort_unless($snapshot->customer_id === $vm->id, 404);
+
+ try {
+ $snapshots->delete($vm, $snapshot);
+ } catch (\Throwable $e) {
+ return back()->withErrors(['snapshot' => $e->getMessage()]);
+ }
+
+ return back()->with('success', 'Snapshot gelöscht.');
+ }
+}
diff --git a/app/Http/Controllers/Web/VmStatusController.php b/app/Http/Controllers/Web/VmStatusController.php
new file mode 100644
index 0000000..ee90afa
--- /dev/null
+++ b/app/Http/Controllers/Web/VmStatusController.php
@@ -0,0 +1,42 @@
+authorize('view', $vm);
+
+ if (! $vm->vmid || $vm->status !== 'active') {
+ return response()->json([
+ 'status' => $vm->status,
+ 'proxmox' => null,
+ 'message' => 'VM nicht bereit',
+ ]);
+ }
+
+ try {
+ $live = $management->refreshLiveStatus($vm);
+
+ return response()->json([
+ 'status' => $vm->status,
+ 'proxmox' => $live,
+ 'attached_iso' => $vm->attached_iso,
+ 'refreshed_at' => $vm->proxmox_status_at?->toIso8601String(),
+ ]);
+ } catch (\Throwable $e) {
+ return response()->json([
+ 'status' => $vm->status,
+ 'proxmox' => null,
+ 'error' => $e->getMessage(),
+ ], 502);
+ }
+ }
+}
diff --git a/app/Http/Middleware/EnsureTwoFactorVerified.php b/app/Http/Middleware/EnsureTwoFactorVerified.php
new file mode 100644
index 0000000..5219606
--- /dev/null
+++ b/app/Http/Middleware/EnsureTwoFactorVerified.php
@@ -0,0 +1,33 @@
+user();
+ if (! $user) {
+ return $next($request);
+ }
+
+ if ($this->twoFactor->mustSetup($user) && ! $request->routeIs('two-factor.*')) {
+ return redirect()->route('two-factor.setup');
+ }
+
+ if ($this->twoFactor->isEnabled($user) && ! $request->session()->get('two_factor_passed')) {
+ if (! $request->routeIs('two-factor.challenge', 'two-factor.challenge.store', 'logout')) {
+ return redirect()->route('two-factor.challenge');
+ }
+ }
+
+ return $next($request);
+ }
+}
diff --git a/app/Http/Middleware/EnsureUserIsAdmin.php b/app/Http/Middleware/EnsureUserIsAdmin.php
new file mode 100644
index 0000000..dd032c5
--- /dev/null
+++ b/app/Http/Middleware/EnsureUserIsAdmin.php
@@ -0,0 +1,19 @@
+user()?->isAdmin()) {
+ abort(403, 'Zugriff nur für Administratoren.');
+ }
+
+ return $next($request);
+ }
+}
diff --git a/app/Http/Middleware/VerifyWhmcsRequest.php b/app/Http/Middleware/VerifyWhmcsRequest.php
new file mode 100644
index 0000000..8841072
--- /dev/null
+++ b/app/Http/Middleware/VerifyWhmcsRequest.php
@@ -0,0 +1,48 @@
+ip(), $allowedIps, true)) {
+ abort(403, 'IP not allowed.');
+ }
+
+ $timestamp = (int) $request->header('X-Whmcs-Timestamp', 0);
+ $signature = (string) $request->header('X-Whmcs-Signature', '');
+ $window = (int) config('hosting.whmcs.replay_window_seconds', 300);
+
+ if ($timestamp === 0 || $signature === '') {
+ abort(401, 'Missing WHMCS signature headers.');
+ }
+
+ if (abs(time() - $timestamp) > $window) {
+ abort(401, 'Request timestamp expired.');
+ }
+
+ $payload = $timestamp.'.'.$request->getContent();
+ $expected = hash_hmac('sha256', $payload, $secret);
+
+ if (! hash_equals($expected, $signature)) {
+ abort(401, 'Invalid WHMCS signature.');
+ }
+
+ return $next($request);
+ }
+}
diff --git a/app/Http/Requests/StoreCustomerRequest.php b/app/Http/Requests/StoreCustomerRequest.php
new file mode 100644
index 0000000..d82272d
--- /dev/null
+++ b/app/Http/Requests/StoreCustomerRequest.php
@@ -0,0 +1,42 @@
+ ['required', 'string', 'max:100', 'regex:/^[a-zA-Z0-9][a-zA-Z0-9_-]*$/'],
+ 'subdomain' => [
+ 'required',
+ 'string',
+ 'max:63',
+ 'regex:/^[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?$/',
+ function (string $attribute, mixed $value, \Closure $fail) use ($baseDomain): void {
+ $domain = strtolower((string) $value).'.'.$baseDomain;
+ if (\App\Models\Customer::query()->where('domain', $domain)->exists()) {
+ $fail("The domain {$domain} is already registered.");
+ }
+ },
+ ],
+ 'cpu' => ['sometimes', 'integer', 'min:1', 'max:32'],
+ 'ram' => ['sometimes', 'integer', 'min:512', 'max:131072'],
+ 'disk' => ['sometimes', 'integer', 'min:10', 'max:2048'],
+ ];
+ }
+
+ public function domain(): string
+ {
+ return strtolower($this->validated('subdomain')).'.'.config('hosting.plesk.base_domain');
+ }
+}
diff --git a/app/Http/Requests/StoreVmRequest.php b/app/Http/Requests/StoreVmRequest.php
new file mode 100644
index 0000000..bee0b15
--- /dev/null
+++ b/app/Http/Requests/StoreVmRequest.php
@@ -0,0 +1,64 @@
+user()->can('create', Customer::class);
+ }
+
+ public function rules(): array
+ {
+ $baseDomain = config('hosting.plesk.base_domain');
+
+ return [
+ 'name' => ['required', 'string', 'max:100', 'regex:/^[a-zA-Z0-9][a-zA-Z0-9_-]*$/'],
+ 'subdomain' => [
+ Rule::requiredIf(fn () => $this->boolean('behind_traefik')),
+ 'nullable',
+ 'string',
+ 'max:63',
+ 'regex:/^[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?$/',
+ ],
+ 'behind_traefik' => ['boolean'],
+ 'user_id' => [
+ Rule::requiredIf(fn () => $this->user()->isAdmin()),
+ 'nullable',
+ 'exists:users,id',
+ ],
+ 'ip_pool_id' => ['nullable', 'exists:ip_pools,id'],
+ 'cpu' => ['required', 'integer', 'min:1', 'max:32'],
+ 'ram' => ['required', 'integer', 'min:512', 'max:131072'],
+ 'disk' => ['required', 'integer', 'min:10', 'max:2048'],
+ 'devices' => ['nullable', 'array'],
+ 'devices.*.type' => ['required_with:devices', Rule::in(array_keys(\App\Models\VmDevice::typesFor($this->user())))],
+ 'devices.*.slot' => ['nullable', 'string', 'max:32'],
+ 'devices.*.config' => ['nullable', 'array'],
+ 'install_iso' => ['nullable', 'string', 'max:255'],
+ ];
+ }
+
+ public function domain(): ?string
+ {
+ if (! $this->boolean('behind_traefik') || ! $this->filled('subdomain')) {
+ return null;
+ }
+
+ return strtolower($this->input('subdomain')).'.'.config('hosting.plesk.base_domain');
+ }
+
+ public function ownerId(): int
+ {
+ if ($this->user()->isAdmin() && $this->filled('user_id')) {
+ return (int) $this->input('user_id');
+ }
+
+ return $this->user()->id;
+ }
+}
diff --git a/app/Http/Requests/UpdateVmRequest.php b/app/Http/Requests/UpdateVmRequest.php
new file mode 100644
index 0000000..4f9ac2a
--- /dev/null
+++ b/app/Http/Requests/UpdateVmRequest.php
@@ -0,0 +1,28 @@
+user()->can('update', $this->route('vm'));
+ }
+
+ public function rules(): array
+ {
+ return [
+ 'name' => ['sometimes', 'string', 'max:100', 'regex:/^[a-zA-Z0-9][a-zA-Z0-9_-]*$/'],
+ 'cpu' => ['sometimes', 'integer', 'min:1', 'max:32'],
+ 'ram' => ['sometimes', 'integer', 'min:512', 'max:131072'],
+ 'disk' => ['sometimes', 'integer', 'min:10', 'max:2048'],
+ 'devices' => ['nullable', 'array'],
+ 'devices.*.type' => ['required_with:devices', Rule::in(array_keys(\App\Models\VmDevice::typesFor($this->user())))],
+ 'devices.*.slot' => ['nullable', 'string', 'max:32'],
+ 'devices.*.config' => ['nullable', 'array'],
+ ];
+ }
+}
diff --git a/app/Http/Requests/Whmcs/ProvisionServiceRequest.php b/app/Http/Requests/Whmcs/ProvisionServiceRequest.php
new file mode 100644
index 0000000..454c369
--- /dev/null
+++ b/app/Http/Requests/Whmcs/ProvisionServiceRequest.php
@@ -0,0 +1,57 @@
+ ['required', 'integer', 'unique:whmcs_services,whmcs_service_id'],
+ 'whmcs_client_id' => ['required', 'integer'],
+ 'whmcs_order_id' => ['nullable', 'integer'],
+ 'client_email' => ['required', 'email', 'max:255'],
+ 'client_name' => ['required', 'string', 'max:100'],
+ 'plan_slug' => ['required', 'string', 'exists:hosting_plans,slug'],
+ 'hostname' => ['required', 'string', 'max:100', 'regex:/^[a-zA-Z0-9][a-zA-Z0-9_-]*$/'],
+ 'subdomain' => [
+ Rule::requiredIf(fn () => $this->boolean('behind_traefik', true)),
+ 'nullable',
+ 'string',
+ 'max:63',
+ 'regex:/^[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?$/',
+ ],
+ 'behind_traefik' => ['boolean'],
+ 'provision_mode' => ['required', Rule::in(['template', 'iso', 'empty'])],
+ 'template_slug' => [
+ Rule::requiredIf(fn () => $this->input('provision_mode') === 'template'),
+ 'nullable',
+ 'string',
+ 'max:64',
+ ],
+ 'iso_volid' => [
+ Rule::requiredIf(fn () => $this->input('provision_mode') === 'iso'),
+ 'nullable',
+ 'string',
+ 'max:255',
+ ],
+ ];
+ }
+
+ public function domain(): ?string
+ {
+ if (! $this->boolean('behind_traefik', true) || ! $this->filled('subdomain')) {
+ return null;
+ }
+
+ return strtolower($this->input('subdomain')).'.'.config('hosting.plesk.base_domain');
+ }
+}
diff --git a/app/Jobs/ProvisionCustomerJob.php b/app/Jobs/ProvisionCustomerJob.php
new file mode 100644
index 0000000..84a5a37
--- /dev/null
+++ b/app/Jobs/ProvisionCustomerJob.php
@@ -0,0 +1,75 @@
+with('owner')->findOrFail($this->customerId);
+
+ if ($customer->status === 'active') {
+ Log::info('ProvisionCustomerJob: customer already active', ['id' => $customer->id]);
+
+ return;
+ }
+
+ $customer->update([
+ 'status' => 'pending',
+ 'provisioning_step' => 'queued',
+ 'error_message' => null,
+ ]);
+
+ $data = CustomerProvisionData::fromCustomer($customer);
+
+ $provisioning->provision($customer, $data);
+
+ if ($customer->owner) {
+ $notifications->provisioningCompleted($customer->fresh(), $customer->owner);
+ }
+ }
+
+ public function failed(?Throwable $exception): void
+ {
+ Log::error('ProvisionCustomerJob failed permanently', [
+ 'customer_id' => $this->customerId,
+ 'error' => $exception?->getMessage(),
+ ]);
+
+ $customer = Customer::query()->with('owner')->find($this->customerId);
+ if ($customer) {
+ $customer->update([
+ 'status' => 'failed',
+ 'error_message' => $exception?->getMessage() ?? 'Unknown provisioning failure',
+ ]);
+ if ($customer->owner) {
+ app(HostingNotificationService::class)->provisioningFailed(
+ $customer,
+ $customer->owner,
+ $customer->error_message ?? 'Unbekannter Fehler',
+ );
+ }
+ }
+ }
+}
diff --git a/app/Models/Customer.php b/app/Models/Customer.php
new file mode 100644
index 0000000..16c3fc7
--- /dev/null
+++ b/app/Models/Customer.php
@@ -0,0 +1,129 @@
+ 'integer',
+ 'cpu' => 'integer',
+ 'ram' => 'integer',
+ 'disk' => 'integer',
+ 'behind_traefik' => 'boolean',
+ 'proxmox_uptime' => 'integer',
+ 'proxmox_status_at' => 'datetime',
+ ];
+ }
+
+ public function owner(): BelongsTo
+ {
+ return $this->belongsTo(User::class, 'user_id');
+ }
+
+ public function ipPool(): BelongsTo
+ {
+ return $this->belongsTo(IpPool::class, 'ip_pool_id');
+ }
+
+ public function plan(): BelongsTo
+ {
+ return $this->belongsTo(HostingPlan::class, 'hosting_plan_id');
+ }
+
+ public function whmcsService(): BelongsTo
+ {
+ return $this->belongsTo(WhmcsService::class, 'whmcs_service_id');
+ }
+
+ public function vmidReservation(): \Illuminate\Database\Eloquent\Relations\HasOne
+ {
+ return $this->hasOne(VmidReservation::class);
+ }
+
+ public function devices(): HasMany
+ {
+ return $this->hasMany(VmDevice::class)->orderBy('sort_order');
+ }
+
+ public function snapshots(): HasMany
+ {
+ return $this->hasMany(VmSnapshot::class);
+ }
+
+ public function backups(): HasMany
+ {
+ return $this->hasMany(VmBackup::class);
+ }
+
+ public function firewallRules(): HasMany
+ {
+ return $this->hasMany(VmFirewallRule::class)->orderBy('sort_order');
+ }
+
+ public function metrics(): HasMany
+ {
+ return $this->hasMany(VmMetric::class)->orderByDesc('recorded_at');
+ }
+
+ public function activityLogs(): HasMany
+ {
+ return $this->hasMany(VmActivityLog::class)->latest();
+ }
+
+ public function isRunning(): bool
+ {
+ return $this->proxmox_status === 'running';
+ }
+
+ public function scopeForUser(Builder $query, User $user): Builder
+ {
+ if ($user->isAdmin()) {
+ return $query;
+ }
+
+ return $query->where('user_id', $user->id);
+ }
+
+ public function isProvisionable(): bool
+ {
+ return in_array($this->status, ['pending', 'failed'], true);
+ }
+
+ public function displayName(): string
+ {
+ return $this->name.($this->vmid ? " (#{$this->vmid})" : '');
+ }
+}
diff --git a/app/Models/CustomerIsoUpload.php b/app/Models/CustomerIsoUpload.php
new file mode 100644
index 0000000..ca4cb94
--- /dev/null
+++ b/app/Models/CustomerIsoUpload.php
@@ -0,0 +1,30 @@
+ 'integer',
+ 'expires_at' => 'datetime',
+ ];
+ }
+
+ public function user(): BelongsTo
+ {
+ return $this->belongsTo(User::class);
+ }
+}
diff --git a/app/Models/HostingPlan.php b/app/Models/HostingPlan.php
new file mode 100644
index 0000000..d62027c
--- /dev/null
+++ b/app/Models/HostingPlan.php
@@ -0,0 +1,41 @@
+ 'integer',
+ 'ram' => 'integer',
+ 'disk' => 'integer',
+ 'max_backups' => 'integer',
+ 'allow_public_ip' => 'boolean',
+ 'allow_iso_upload' => 'boolean',
+ 'is_active' => 'boolean',
+ 'whmcs_product_id' => 'integer',
+ ];
+ }
+
+ public function customers(): HasMany
+ {
+ return $this->hasMany(Customer::class, 'hosting_plan_id');
+ }
+}
diff --git a/app/Models/IpPool.php b/app/Models/IpPool.php
new file mode 100644
index 0000000..2502629
--- /dev/null
+++ b/app/Models/IpPool.php
@@ -0,0 +1,74 @@
+ IpPoolType::class,
+ 'cidr' => 'integer',
+ 'is_active' => 'boolean',
+ ];
+ }
+
+ public function vms(): HasMany
+ {
+ return $this->hasMany(Customer::class, 'ip_pool_id');
+ }
+
+ public function totalIps(): int
+ {
+ $start = ip2long($this->start_ip);
+ $end = ip2long($this->end_ip);
+
+ if ($start === false || $end === false || $end < $start) {
+ return 0;
+ }
+
+ return (int) ($end - $start + 1);
+ }
+
+ public function usedIpsCount(): int
+ {
+ $query = Customer::query()
+ ->where('ip_pool_id', $this->id)
+ ->whereIn('status', ['pending', 'active']);
+
+ if ($this->type === IpPoolType::Public) {
+ return $query->whereNotNull('public_ip')->count();
+ }
+
+ return $query->whereNotNull('ip_address')->count();
+ }
+
+ public function freeIpsCount(): int
+ {
+ return max(0, $this->totalIps() - $this->usedIpsCount());
+ }
+
+ public function containsIp(string $ip): bool
+ {
+ $long = ip2long($ip);
+ $start = ip2long($this->start_ip);
+ $end = ip2long($this->end_ip);
+
+ return $long !== false && $long >= $start && $long <= $end;
+ }
+}
diff --git a/app/Models/SystemSetting.php b/app/Models/SystemSetting.php
new file mode 100644
index 0000000..669280f
--- /dev/null
+++ b/app/Models/SystemSetting.php
@@ -0,0 +1,32 @@
+find($key);
+
+ return $row?->value ?? $default;
+ });
+ }
+
+ public static function set(string $key, mixed $value): void
+ {
+ static::query()->updateOrCreate(['key' => $key], ['value' => (string) $value]);
+ Cache::forget("setting.{$key}");
+ }
+}
diff --git a/app/Models/User.php b/app/Models/User.php
new file mode 100644
index 0000000..03e159c
--- /dev/null
+++ b/app/Models/User.php
@@ -0,0 +1,46 @@
+ */
+ use HasFactory, Notifiable;
+
+ protected function casts(): array
+ {
+ return [
+ 'email_verified_at' => 'datetime',
+ 'password' => 'hashed',
+ 'role' => UserRole::class,
+ 'is_active' => 'boolean',
+ 'two_factor_confirmed_at' => 'datetime',
+ ];
+ }
+
+ public function vms(): HasMany
+ {
+ return $this->hasMany(Customer::class, 'user_id');
+ }
+
+ public function isAdmin(): bool
+ {
+ return $this->role === UserRole::Admin;
+ }
+
+ public function isCustomer(): bool
+ {
+ return $this->role === UserRole::Customer;
+ }
+}
diff --git a/app/Models/VmActivityLog.php b/app/Models/VmActivityLog.php
new file mode 100644
index 0000000..ba6c009
--- /dev/null
+++ b/app/Models/VmActivityLog.php
@@ -0,0 +1,35 @@
+ 'array',
+ ];
+ }
+
+ public function vm(): BelongsTo
+ {
+ return $this->belongsTo(Customer::class, 'customer_id');
+ }
+
+ public function user(): BelongsTo
+ {
+ return $this->belongsTo(User::class);
+ }
+}
diff --git a/app/Models/VmBackup.php b/app/Models/VmBackup.php
new file mode 100644
index 0000000..28615a3
--- /dev/null
+++ b/app/Models/VmBackup.php
@@ -0,0 +1,26 @@
+ 'integer',
+ 'completed_at' => 'datetime',
+ ];
+ }
+
+ public function vm(): BelongsTo
+ {
+ return $this->belongsTo(Customer::class, 'customer_id');
+ }
+}
diff --git a/app/Models/VmDevice.php b/app/Models/VmDevice.php
new file mode 100644
index 0000000..3030191
--- /dev/null
+++ b/app/Models/VmDevice.php
@@ -0,0 +1,58 @@
+ 'Zusätzliche Festplatte',
+ self::TYPE_NETWORK => 'Netzwerk-Interface',
+ self::TYPE_USB => 'USB-Gerät',
+ self::TYPE_PCI => 'PCI Passthrough',
+ ];
+ }
+
+ public static function typesFor(?\App\Models\User $user = null): array
+ {
+ $types = self::types();
+ if ($user && ! $user->isAdmin()) {
+ return array_intersect_key($types, array_flip([self::TYPE_DISK, self::TYPE_NETWORK]));
+ }
+
+ return $types;
+ }
+
+ protected $fillable = [
+ 'customer_id',
+ 'type',
+ 'slot',
+ 'config',
+ 'sort_order',
+ ];
+
+ protected function casts(): array
+ {
+ return [
+ 'config' => 'array',
+ 'sort_order' => 'integer',
+ ];
+ }
+
+ public function vm(): BelongsTo
+ {
+ return $this->belongsTo(Customer::class, 'customer_id');
+ }
+}
diff --git a/app/Models/VmFirewallRule.php b/app/Models/VmFirewallRule.php
new file mode 100644
index 0000000..f49370c
--- /dev/null
+++ b/app/Models/VmFirewallRule.php
@@ -0,0 +1,26 @@
+ 'boolean',
+ 'sort_order' => 'integer',
+ ];
+ }
+
+ public function vm(): BelongsTo
+ {
+ return $this->belongsTo(Customer::class, 'customer_id');
+ }
+}
diff --git a/app/Models/VmMetric.php b/app/Models/VmMetric.php
new file mode 100644
index 0000000..76d1073
--- /dev/null
+++ b/app/Models/VmMetric.php
@@ -0,0 +1,32 @@
+ 'float',
+ 'mem' => 'integer',
+ 'maxmem' => 'integer',
+ 'disk' => 'integer',
+ 'maxdisk' => 'integer',
+ 'recorded_at' => 'datetime',
+ ];
+ }
+
+ public function vm(): BelongsTo
+ {
+ return $this->belongsTo(Customer::class, 'customer_id');
+ }
+}
diff --git a/app/Models/VmSnapshot.php b/app/Models/VmSnapshot.php
new file mode 100644
index 0000000..adad5a9
--- /dev/null
+++ b/app/Models/VmSnapshot.php
@@ -0,0 +1,26 @@
+ 'boolean',
+ 'expires_at' => 'datetime',
+ ];
+ }
+
+ public function vm(): BelongsTo
+ {
+ return $this->belongsTo(Customer::class, 'customer_id');
+ }
+}
diff --git a/app/Models/VmTemplate.php b/app/Models/VmTemplate.php
new file mode 100644
index 0000000..e5a537f
--- /dev/null
+++ b/app/Models/VmTemplate.php
@@ -0,0 +1,20 @@
+ 'integer',
+ 'is_active' => 'boolean',
+ ];
+ }
+}
diff --git a/app/Models/VmidReservation.php b/app/Models/VmidReservation.php
new file mode 100644
index 0000000..2cc7a04
--- /dev/null
+++ b/app/Models/VmidReservation.php
@@ -0,0 +1,36 @@
+ 'integer',
+ 'release_at' => 'datetime',
+ 'released_at' => 'datetime',
+ ];
+ }
+
+ public function customer(): BelongsTo
+ {
+ return $this->belongsTo(Customer::class);
+ }
+
+ public function isBlocking(int $vmid): bool
+ {
+ return in_array($this->status, ['reserved', 'active', 'pending_release'], true);
+ }
+}
diff --git a/app/Models/WhmcsService.php b/app/Models/WhmcsService.php
new file mode 100644
index 0000000..9c48e2c
--- /dev/null
+++ b/app/Models/WhmcsService.php
@@ -0,0 +1,45 @@
+ 'integer',
+ 'whmcs_client_id' => 'integer',
+ 'whmcs_order_id' => 'integer',
+ 'config' => 'array',
+ ];
+ }
+
+ public function customer(): BelongsTo
+ {
+ return $this->belongsTo(Customer::class);
+ }
+
+ public function user(): BelongsTo
+ {
+ return $this->belongsTo(User::class);
+ }
+
+ public function plan(): BelongsTo
+ {
+ return $this->belongsTo(HostingPlan::class, 'hosting_plan_id');
+ }
+}
diff --git a/app/Policies/IpPoolPolicy.php b/app/Policies/IpPoolPolicy.php
new file mode 100644
index 0000000..fd92f7c
--- /dev/null
+++ b/app/Policies/IpPoolPolicy.php
@@ -0,0 +1,34 @@
+is_active;
+ }
+
+ public function view(User $user, IpPool $ipPool): bool
+ {
+ return $user->is_active;
+ }
+
+ public function create(User $user): bool
+ {
+ return $user->isAdmin() && $user->is_active;
+ }
+
+ public function update(User $user, IpPool $ipPool): bool
+ {
+ return $user->isAdmin() && $user->is_active;
+ }
+
+ public function delete(User $user, IpPool $ipPool): bool
+ {
+ return $user->isAdmin() && $user->is_active;
+ }
+}
diff --git a/app/Policies/UserPolicy.php b/app/Policies/UserPolicy.php
new file mode 100644
index 0000000..06cc7e0
--- /dev/null
+++ b/app/Policies/UserPolicy.php
@@ -0,0 +1,28 @@
+isAdmin() && $user->is_active;
+ }
+
+ public function create(User $user): bool
+ {
+ return $user->isAdmin() && $user->is_active;
+ }
+
+ public function update(User $user, User $model): bool
+ {
+ return $user->isAdmin() && $user->is_active;
+ }
+
+ public function delete(User $user, User $model): bool
+ {
+ return $user->isAdmin() && $user->is_active && $user->id !== $model->id;
+ }
+}
diff --git a/app/Policies/VmPolicy.php b/app/Policies/VmPolicy.php
new file mode 100644
index 0000000..50ede5b
--- /dev/null
+++ b/app/Policies/VmPolicy.php
@@ -0,0 +1,39 @@
+is_active;
+ }
+
+ public function view(User $user, Customer $vm): bool
+ {
+ return $user->is_active && ($user->isAdmin() || $vm->user_id === $user->id);
+ }
+
+ public function create(User $user): bool
+ {
+ return $user->is_active;
+ }
+
+ public function update(User $user, Customer $vm): bool
+ {
+ return $user->is_active && ($user->isAdmin() || $vm->user_id === $user->id);
+ }
+
+ public function delete(User $user, Customer $vm): bool
+ {
+ return $user->is_active && ($user->isAdmin() || $vm->user_id === $user->id);
+ }
+
+ public function manage(User $user, Customer $vm): bool
+ {
+ return $this->update($user, $vm) && $vm->status === 'active' && $vm->vmid !== null;
+ }
+}
diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php
new file mode 100644
index 0000000..c406b56
--- /dev/null
+++ b/app/Providers/AppServiceProvider.php
@@ -0,0 +1,36 @@
+by($request->ip().'|'.$request->input('email'));
+ });
+
+ Gate::policy(Customer::class, VmPolicy::class);
+ Gate::policy(IpPool::class, IpPoolPolicy::class);
+ Gate::policy(User::class, UserPolicy::class);
+ }
+}
diff --git a/app/Providers/HostingServiceProvider.php b/app/Providers/HostingServiceProvider.php
new file mode 100644
index 0000000..c2713f9
--- /dev/null
+++ b/app/Providers/HostingServiceProvider.php
@@ -0,0 +1,36 @@
+app->singleton(ProxmoxClient::class);
+ $this->app->singleton(PleskClient::class);
+ $this->app->singleton(TraefikGenerator::class);
+ $this->app->singleton(IpAddressAllocator::class);
+ $this->app->singleton(ProvisioningService::class);
+ $this->app->singleton(VmManagementService::class);
+ }
+
+ public function boot(): void
+ {
+ RateLimiter::for('vm-power', function (Request $request) {
+ $limit = (int) config('hosting.vm_power.rate_limit_per_minute', 20);
+
+ return Limit::perMinute($limit)->by($request->user()?->id ?: $request->ip());
+ });
+ }
+}
diff --git a/app/Services/Auth/TwoFactorService.php b/app/Services/Auth/TwoFactorService.php
new file mode 100644
index 0000000..951aab7
--- /dev/null
+++ b/app/Services/Auth/TwoFactorService.php
@@ -0,0 +1,87 @@
+google2fa->generateSecretKey();
+ }
+
+ public function qrUrl(User $user, string $secret): string
+ {
+ $company = config('app.name', 'HexaHost Panel');
+
+ return $this->google2fa->getQRCodeUrl($company, $user->email, $secret);
+ }
+
+ public function verify(User $user, string $code): bool
+ {
+ $secret = $this->decryptSecret($user);
+ if (! $secret) {
+ return false;
+ }
+
+ return $this->google2fa->verifyKey($secret, $code);
+ }
+
+ public function enable(User $user, string $secret, string $code): bool
+ {
+ if (! $this->google2fa->verifyKey($secret, $code)) {
+ return false;
+ }
+
+ $recovery = collect(range(1, 8))->map(fn () => bin2hex(random_bytes(4)))->implode(',');
+
+ $user->forceFill([
+ 'two_factor_secret' => Crypt::encryptString($secret),
+ 'two_factor_recovery_codes' => Crypt::encryptString($recovery),
+ 'two_factor_confirmed_at' => now(),
+ ])->save();
+
+ return true;
+ }
+
+ public function disable(User $user): void
+ {
+ $user->forceFill([
+ 'two_factor_secret' => null,
+ 'two_factor_recovery_codes' => null,
+ 'two_factor_confirmed_at' => null,
+ ])->save();
+ }
+
+ public function isEnabled(User $user): bool
+ {
+ return $user->two_factor_confirmed_at !== null && $user->two_factor_secret !== null;
+ }
+
+ public function mustSetup(User $user): bool
+ {
+ if (! config('hosting.security.admin_2fa_required', true)) {
+ return false;
+ }
+
+ return $user->isAdmin() && ! $this->isEnabled($user);
+ }
+
+ public function decryptSecret(User $user): ?string
+ {
+ if (! $user->two_factor_secret) {
+ return null;
+ }
+
+ try {
+ return Crypt::decryptString($user->two_factor_secret);
+ } catch (\Throwable) {
+ return null;
+ }
+ }
+}
diff --git a/app/Services/Hosting/Backups/BackupService.php b/app/Services/Hosting/Backups/BackupService.php
new file mode 100644
index 0000000..a5a0393
--- /dev/null
+++ b/app/Services/Hosting/Backups/BackupService.php
@@ -0,0 +1,73 @@
+maxBackupsForUser($user);
+ $count = VmBackup::query()
+ ->whereHas('vm', fn ($q) => $q->where('user_id', $user->id))
+ ->whereIn('status', ['running', 'completed'])
+ ->count();
+
+ if ($count >= $max) {
+ throw new ProvisioningException("Maximal {$max} Backups erlaubt.", step: 'backup_limit');
+ }
+
+ $storage = config('hosting.backups.pbs_storage', 'inett-PBS');
+ $upid = $this->proxmox->startBackup((int) $vm->vmid, $storage);
+
+ return VmBackup::query()->create([
+ 'customer_id' => $vm->id,
+ 'user_id' => $user->id,
+ 'storage' => $storage,
+ 'volume_id' => $upid,
+ 'status' => 'running',
+ ]);
+ }
+
+ public function maxBackupsForUser(User $user): int
+ {
+ return (int) config('hosting.backups.max_per_customer', 4);
+ }
+
+ public function deleteAllForVm(Customer $vm): void
+ {
+ $backups = VmBackup::query()->where('customer_id', $vm->id)->get();
+
+ foreach ($backups as $backup) {
+ Log::info('Backup record removed', ['id' => $backup->id, 'volume' => $backup->volume_id]);
+ // PBS purge via API when credentials available
+ $backup->delete();
+ }
+ }
+
+ public function enforceRetentionForUser(User $user): void
+ {
+ $max = $this->maxBackupsForUser($user);
+ $backups = VmBackup::query()
+ ->whereHas('vm', fn ($q) => $q->where('user_id', $user->id))
+ ->where('status', 'completed')
+ ->orderByDesc('completed_at')
+ ->get();
+
+ foreach ($backups->slice($max) as $old) {
+ $old->delete();
+ }
+ }
+}
diff --git a/app/Services/Hosting/DTO/CustomerProvisionData.php b/app/Services/Hosting/DTO/CustomerProvisionData.php
new file mode 100644
index 0000000..fb5ade9
--- /dev/null
+++ b/app/Services/Hosting/DTO/CustomerProvisionData.php
@@ -0,0 +1,74 @@
+name,
+ domain: $customer->domain,
+ vmid: $customer->vmid,
+ ip: $customer->ip_address,
+ public_ip: $customer->public_ip,
+ cpu: $customer->cpu,
+ ram: $customer->ram,
+ disk: $customer->disk,
+ behind_traefik: $customer->behind_traefik,
+ ip_pool_id: $customer->ip_pool_id,
+ );
+ }
+
+ public static function fromArray(array $data): self
+ {
+ return new self(
+ customer_name: (string) $data['customer_name'],
+ domain: isset($data['domain']) ? (string) $data['domain'] : null,
+ vmid: isset($data['vmid']) ? (int) $data['vmid'] : null,
+ ip: isset($data['ip']) ? (string) $data['ip'] : null,
+ public_ip: isset($data['public_ip']) ? (string) $data['public_ip'] : null,
+ cpu: (int) ($data['cpu'] ?? config('hosting.defaults.cpu', 2)),
+ ram: (int) ($data['ram'] ?? config('hosting.defaults.ram', 2048)),
+ disk: (int) ($data['disk'] ?? config('hosting.defaults.disk', 32)),
+ behind_traefik: (bool) ($data['behind_traefik'] ?? true),
+ ip_pool_id: isset($data['ip_pool_id']) ? (int) $data['ip_pool_id'] : null,
+ );
+ }
+
+ public function subdomain(): string
+ {
+ if (! $this->domain) {
+ return '';
+ }
+
+ $base = config('hosting.plesk.base_domain');
+ $suffix = '.'.$base;
+
+ if (str_ends_with($this->domain, $suffix)) {
+ return substr($this->domain, 0, -strlen($suffix));
+ }
+
+ return explode('.', $this->domain)[0] ?? $this->customer_name;
+ }
+
+ public function requiresTraefik(): bool
+ {
+ return $this->behind_traefik && $this->domain !== null && $this->domain !== '';
+ }
+}
diff --git a/app/Services/Hosting/Firewall/FirewallService.php b/app/Services/Hosting/Firewall/FirewallService.php
new file mode 100644
index 0000000..96c55e1
--- /dev/null
+++ b/app/Services/Hosting/Firewall/FirewallService.php
@@ -0,0 +1,33 @@
+vmid) {
+ return;
+ }
+
+ $rules = $vm->firewallRules()->where('is_active', true)->orderBy('sort_order')->get();
+ $payload = $rules->map(fn (VmFirewallRule $r) => [
+ 'type' => $r->direction === 'out' ? 'out' : 'in',
+ 'action' => $r->action,
+ 'proto' => $r->protocol,
+ 'dport' => $r->port,
+ 'source' => $r->source,
+ 'enable' => 1,
+ ])->all();
+
+ if ($payload !== []) {
+ $this->proxmox->setFirewallRules((int) $vm->vmid, $payload);
+ }
+ }
+}
diff --git a/app/Services/Hosting/Health/SystemHealthService.php b/app/Services/Hosting/Health/SystemHealthService.php
new file mode 100644
index 0000000..1407ee7
--- /dev/null
+++ b/app/Services/Hosting/Health/SystemHealthService.php
@@ -0,0 +1,71 @@
+
+ */
+ public function checks(): array
+ {
+ return [
+ 'database' => $this->checkDatabase(),
+ 'proxmox' => $this->checkProxmox(),
+ 'traefik_config' => $this->checkTraefik(),
+ 'queue' => $this->checkQueue(),
+ ];
+ }
+
+ private function checkDatabase(): array
+ {
+ try {
+ DB::connection()->getPdo();
+
+ return ['status' => 'ok', 'message' => 'Datenbank erreichbar'];
+ } catch (\Throwable $e) {
+ return ['status' => 'error', 'message' => $e->getMessage()];
+ }
+ }
+
+ private function checkProxmox(): array
+ {
+ try {
+ $this->proxmox->node();
+
+ return ['status' => 'ok', 'message' => 'Proxmox API erreichbar'];
+ } catch (\Throwable $e) {
+ return ['status' => 'error', 'message' => $e->getMessage()];
+ }
+ }
+
+ private function checkTraefik(): array
+ {
+ $path = config('hosting.traefik.dynamic_config_path');
+ if (! $path) {
+ return ['status' => 'warning', 'message' => 'Traefik-Pfad nicht konfiguriert'];
+ }
+ if (! is_writable(dirname($path)) && ! file_exists($path)) {
+ return ['status' => 'warning', 'message' => 'Traefik-Verzeichnis nicht beschreibbar'];
+ }
+
+ return ['status' => 'ok', 'message' => is_file($path) ? 'Konfigurationsdatei vorhanden' : 'Wird bei erster Route angelegt'];
+ }
+
+ private function checkQueue(): array
+ {
+ try {
+ $size = DB::table('jobs')->count();
+
+ return ['status' => 'ok', 'message' => "Queue: {$size} ausstehende Jobs"];
+ } catch (\Throwable) {
+ return ['status' => 'warning', 'message' => 'Queue-Tabelle nicht verfügbar (sync driver?)'];
+ }
+ }
+}
diff --git a/app/Services/Hosting/Iso/IsoUploadService.php b/app/Services/Hosting/Iso/IsoUploadService.php
new file mode 100644
index 0000000..0bfaaa3
--- /dev/null
+++ b/app/Services/Hosting/Iso/IsoUploadService.php
@@ -0,0 +1,67 @@
+getSize() > $maxMb * 1024 * 1024) {
+ throw new ProvisioningException("Maximale ISO-Größe: {$maxMb} MB.", step: 'iso_upload');
+ }
+
+ $maxPerCustomer = (int) config('hosting.iso_upload.max_per_customer', 1);
+ $existing = CustomerIsoUpload::query()->where('user_id', $user->id)->where('expires_at', '>', now())->count();
+ if ($existing >= $maxPerCustomer) {
+ throw new ProvisioningException('Nur eine aktive ISO pro Kunde erlaubt.', step: 'iso_upload');
+ }
+
+ $storage = config('hosting.proxmox.iso_storage', 'ISO');
+ $safeName = preg_replace('/[^a-zA-Z0-9._-]/', '_', $file->getClientOriginalName()) ?: 'upload.iso';
+ $path = $file->getRealPath();
+
+ $this->proxmox->uploadIsoToStorage($storage, $safeName, $path);
+
+ $volid = "{$storage}:iso/{$safeName}";
+ $hours = (int) config('hosting.iso_upload.retention_hours', 48);
+
+ return CustomerIsoUpload::query()->create([
+ 'user_id' => $user->id,
+ 'filename' => $safeName,
+ 'volid' => $volid,
+ 'size_bytes' => $file->getSize(),
+ 'expires_at' => now()->addHours($hours),
+ ]);
+ }
+
+ public function purgeExpired(): int
+ {
+ $storage = config('hosting.proxmox.iso_storage', 'ISO');
+ $count = 0;
+
+ foreach (CustomerIsoUpload::query()->where('expires_at', '<=', now())->get() as $upload) {
+ try {
+ $this->proxmox->deleteStorageFile($storage, $upload->volid);
+ } catch (\Throwable) {
+ //
+ }
+ $upload->delete();
+ $count++;
+ }
+
+ return $count;
+ }
+}
diff --git a/app/Services/Hosting/Metrics/MetricsCollectorService.php b/app/Services/Hosting/Metrics/MetricsCollectorService.php
new file mode 100644
index 0000000..85e7b77
--- /dev/null
+++ b/app/Services/Hosting/Metrics/MetricsCollectorService.php
@@ -0,0 +1,46 @@
+where('status', 'active')->whereNotNull('vmid')->get();
+
+ foreach ($vms as $vm) {
+ try {
+ $raw = $this->proxmox->getVMStatus((int) $vm->vmid);
+ $normalized = $this->proxmox->normalizeLiveStatus($raw);
+
+ VmMetric::query()->create([
+ 'customer_id' => $vm->id,
+ 'cpu' => $normalized['cpu'],
+ 'mem' => $normalized['mem'],
+ 'maxmem' => $normalized['maxmem'],
+ 'disk' => $normalized['disk'],
+ 'maxdisk' => $normalized['maxdisk'],
+ 'recorded_at' => now(),
+ ]);
+
+ VmMetric::query()
+ ->where('customer_id', $vm->id)
+ ->where('recorded_at', '<', now()->subDays(7))
+ ->delete();
+
+ $count++;
+ } catch (\Throwable) {
+ //
+ }
+ }
+
+ return $count;
+ }
+}
diff --git a/app/Services/Hosting/Notifications/HostingNotificationService.php b/app/Services/Hosting/Notifications/HostingNotificationService.php
new file mode 100644
index 0000000..189fe38
--- /dev/null
+++ b/app/Services/Hosting/Notifications/HostingNotificationService.php
@@ -0,0 +1,60 @@
+send($user, 'VM bereit: '.$vm->name, "Ihre VM {$vm->name} wurde erfolgreich provisioniert.", [
+ 'event' => 'provisioning.completed',
+ 'customer_id' => $vm->id,
+ ]);
+ }
+
+ public function provisioningFailed(Customer $vm, User $user, string $error): void
+ {
+ $this->send($user, 'Provisioning fehlgeschlagen: '.$vm->name, $error, [
+ 'event' => 'provisioning.failed',
+ 'customer_id' => $vm->id,
+ 'error' => $error,
+ ]);
+ }
+
+ public function vmDown(Customer $vm, User $user): void
+ {
+ $this->send($user, 'VM offline: '.$vm->name, "Ihre VM {$vm->name} ist nicht mehr erreichbar (Proxmox).", [
+ 'event' => 'vm.down',
+ ]);
+ }
+
+ private function send(User $user, string $subject, string $body, array $webhookPayload): void
+ {
+ if (config('hosting.plesk.mail_enabled', true)) {
+ try {
+ Mail::raw($body, fn ($m) => $m->to($user->email)->subject($subject));
+ } catch (\Throwable $e) {
+ Log::warning('Mail send failed', ['error' => $e->getMessage()]);
+ }
+ }
+
+ $url = config('hosting.notifications.webhook_url');
+ if ($url) {
+ try {
+ Http::timeout(10)->post($url, array_merge($webhookPayload, [
+ 'email' => $user->email,
+ 'subject' => $subject,
+ 'body' => $body,
+ ]));
+ } catch (\Throwable $e) {
+ Log::warning('Webhook failed', ['error' => $e->getMessage()]);
+ }
+ }
+ }
+}
diff --git a/app/Services/Hosting/Plesk/PleskClient.php b/app/Services/Hosting/Plesk/PleskClient.php
new file mode 100644
index 0000000..8648f54
--- /dev/null
+++ b/app/Services/Hosting/Plesk/PleskClient.php
@@ -0,0 +1,219 @@
+http = Http::baseUrl(rtrim(config('hosting.plesk.url'), '/').'/api/v2')
+ ->withBasicAuth($user, $password)
+ ->acceptJson()
+ ->timeout((int) config('hosting.plesk.timeout', 30))
+ ->when(! $verify, fn (PendingRequest $request) => $request->withoutVerifying());
+ }
+
+ public function createARecord(string $domain, string $subdomain, string $ip): array
+ {
+ $this->validateDomain($domain);
+ $this->validateSubdomain($subdomain);
+ $this->validateIp($ip);
+
+ $baseDomain = config('hosting.plesk.base_domain');
+ $zoneDomain = $this->resolveZoneDomain($domain, $baseDomain);
+ $host = $this->resolveHostLabel($domain, $subdomain, $baseDomain);
+
+ if ($this->findARecord($zoneDomain, $host) !== null) {
+ throw new PleskException(
+ "DNS A record already exists for {$host}.{$zoneDomain}",
+ step: 'plesk_dns_exists',
+ );
+ }
+
+ $targetIp = config('hosting.traefik.public_ip') ?: $ip;
+
+ Log::info('Plesk: creating A record', [
+ 'zone' => $zoneDomain,
+ 'host' => $host,
+ 'ip' => $targetIp,
+ ]);
+
+ $response = $this->http->post("/domains/{$zoneDomain}/dns/records", [
+ 'type' => 'A',
+ 'host' => $host === '@' ? '' : $host,
+ 'value' => $targetIp,
+ ]);
+
+ if ($response->failed()) {
+ throw new PleskException(
+ 'Plesk create A record failed: '.$response->body(),
+ step: 'plesk_create',
+ context: ['status' => $response->status()],
+ code: $response->status(),
+ );
+ }
+
+ return $response->json() ?? [];
+ }
+
+ public function deleteARecord(string $domain, string $subdomain): void
+ {
+ $baseDomain = config('hosting.plesk.base_domain');
+ $zoneDomain = $this->resolveZoneDomain($domain, $baseDomain);
+ $host = $this->resolveHostLabel($domain, $subdomain, $baseDomain);
+
+ $record = $this->findARecord($zoneDomain, $host);
+
+ if ($record === null) {
+ Log::warning('Plesk: A record not found for deletion', compact('zoneDomain', 'host'));
+
+ return;
+ }
+
+ $recordId = $record['id'] ?? null;
+
+ if ($recordId === null) {
+ throw new PleskException('Plesk record id missing.', step: 'plesk_delete');
+ }
+
+ Log::info('Plesk: deleting A record', ['zone' => $zoneDomain, 'id' => $recordId]);
+
+ $response = $this->http->delete("/domains/{$zoneDomain}/dns/records/{$recordId}");
+
+ if ($response->failed() && $response->status() !== 404) {
+ throw new PleskException(
+ 'Plesk delete A record failed: '.$response->body(),
+ step: 'plesk_delete',
+ code: $response->status(),
+ );
+ }
+ }
+
+ public function listRecords(string $domain): array
+ {
+ $zoneDomain = $this->resolveZoneDomain($domain, config('hosting.plesk.base_domain'));
+
+ try {
+ $response = $this->http->get("/domains/{$zoneDomain}/dns/records");
+
+ if ($response->failed()) {
+ throw new PleskException(
+ 'Plesk list records failed: '.$response->body(),
+ step: 'plesk_list',
+ code: $response->status(),
+ );
+ }
+
+ return $response->json() ?? [];
+ } catch (ConnectionException $e) {
+ throw new PleskException(
+ 'Plesk connection failed: '.$e->getMessage(),
+ step: 'plesk_connection',
+ previous: $e,
+ );
+ }
+ }
+
+ public function dnsExists(string $domain, string $subdomain): bool
+ {
+ $zoneDomain = $this->resolveZoneDomain($domain, config('hosting.plesk.base_domain'));
+ $host = $this->resolveHostLabel($domain, $subdomain, config('hosting.plesk.base_domain'));
+
+ return $this->findARecord($zoneDomain, $host) !== null;
+ }
+
+ private function findARecord(string $zoneDomain, string $host): ?array
+ {
+ $records = $this->listRecords($zoneDomain);
+ $items = $records['records'] ?? (is_array($records) && array_is_list($records) ? $records : []);
+
+ foreach ($items as $record) {
+ if (! is_array($record)) {
+ continue;
+ }
+
+ $type = strtoupper((string) ($record['type'] ?? ''));
+ $recordHost = (string) ($record['host'] ?? $record['name'] ?? '');
+
+ if ($type !== 'A') {
+ continue;
+ }
+
+ $normalizedHost = $recordHost === '' ? '@' : rtrim($recordHost, '.');
+
+ if ($normalizedHost === $host || $normalizedHost === "{$host}.{$zoneDomain}") {
+ return $record;
+ }
+ }
+
+ return null;
+ }
+
+ private function resolveZoneDomain(string $domain, string $baseDomain): string
+ {
+ if (str_ends_with($domain, '.'.$baseDomain) || $domain === $baseDomain) {
+ return $baseDomain;
+ }
+
+ return $domain;
+ }
+
+ private function resolveHostLabel(string $domain, string $subdomain, string $baseDomain): string
+ {
+ if ($subdomain !== '' && $subdomain !== '@') {
+ return $subdomain;
+ }
+
+ if ($domain === $baseDomain) {
+ return '@';
+ }
+
+ if (str_ends_with($domain, '.'.$baseDomain)) {
+ return substr($domain, 0, -(strlen($baseDomain) + 1));
+ }
+
+ return explode('.', $domain)[0] ?? $subdomain;
+ }
+
+ private function validateDomain(string $domain): void
+ {
+ if (! preg_match('/^(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)+[a-z]{2,}$/i', $domain)) {
+ throw new PleskException("Invalid domain: {$domain}", step: 'plesk_validation');
+ }
+ }
+
+ private function validateSubdomain(string $subdomain): void
+ {
+ if ($subdomain === '' || $subdomain === '@') {
+ return;
+ }
+
+ if (! preg_match('/^[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?$/i', $subdomain)) {
+ throw new PleskException("Invalid subdomain: {$subdomain}", step: 'plesk_validation');
+ }
+ }
+
+ private function validateIp(string $ip): void
+ {
+ if (! filter_var($ip, FILTER_VALIDATE_IP)) {
+ throw new PleskException("Invalid IP: {$ip}", step: 'plesk_validation');
+ }
+ }
+}
diff --git a/app/Services/Hosting/Provisioning/DeprovisionService.php b/app/Services/Hosting/Provisioning/DeprovisionService.php
new file mode 100644
index 0000000..647682b
--- /dev/null
+++ b/app/Services/Hosting/Provisioning/DeprovisionService.php
@@ -0,0 +1,86 @@
+ $customer->id]);
+
+ $this->deleteBackups($customer);
+
+ $customerId = $customer->id;
+ $vmid = $customer->vmid;
+
+ if ($actor) {
+ VmActivityLog::query()->create([
+ 'customer_id' => $customerId,
+ 'user_id' => $actor->id,
+ 'action' => 'terminate.permanent',
+ 'status' => 'success',
+ ]);
+ }
+
+ $this->provisioning->deprovision($customer);
+
+ if ($vmid) {
+ $this->vmidReservation->scheduleRelease((int) $vmid, $customer);
+ }
+
+ $customer->devices()->delete();
+ $customer->delete();
+ }
+
+ /**
+ * VM entfernen, Kundeneintrag bleibt (Support-Fall).
+ */
+ public function removeVmOnly(Customer $customer, ?User $actor = null): void
+ {
+ $this->provisioning->deprovision($customer);
+
+ if ($customer->vmid) {
+ $this->vmidReservation->scheduleRelease((int) $customer->vmid, $customer);
+ }
+
+ $customer->update([
+ 'status' => 'failed',
+ 'provisioning_step' => 'deprovisioned',
+ 'vmid' => null,
+ ]);
+ }
+
+ private function deleteBackups(Customer $customer): void
+ {
+ if (! $customer->vmid) {
+ return;
+ }
+
+ if (! config('hosting.backups.enabled', false)) {
+ Log::info('Backup deletion skipped (PBS not enabled)', ['vmid' => $customer->vmid]);
+
+ return;
+ }
+
+ // PBS-Integration folgt in Phase 2, wenn API-Rechte auf inett-PBS vorhanden
+ Log::warning('PBS backup purge pending implementation', [
+ 'vmid' => $customer->vmid,
+ 'storage' => config('hosting.backups.pbs_storage'),
+ ]);
+ }
+}
diff --git a/app/Services/Hosting/Provisioning/IpAddressAllocator.php b/app/Services/Hosting/Provisioning/IpAddressAllocator.php
new file mode 100644
index 0000000..8fa11d9
--- /dev/null
+++ b/app/Services/Hosting/Provisioning/IpAddressAllocator.php
@@ -0,0 +1,162 @@
+defaultPrivatePool();
+
+ return $this->allocate($pool, $preferred);
+ }
+
+ public function allocatePublicIp(?IpPool $pool = null, ?string $preferred = null): string
+ {
+ $pool ??= IpPool::query()
+ ->where('type', IpPoolType::Public)
+ ->where('is_active', true)
+ ->first() ?? $this->bootstrapPublicPool();
+
+ if ($pool->type !== IpPoolType::Public) {
+ throw new ProvisioningException('Selected pool is not a public IP pool.', step: 'ip_allocation');
+ }
+
+ return $this->allocate($pool, $preferred, 'public_ip');
+ }
+
+ public function allocate(IpPool $pool, ?string $preferred = null, string $column = 'ip_address'): string
+ {
+ return DB::transaction(function () use ($pool, $preferred, $column) {
+ IpPool::query()->whereKey($pool->id)->lockForUpdate()->first();
+
+ if ($preferred !== null) {
+ if (! $pool->containsIp($preferred)) {
+ throw new ProvisioningException(
+ "IP {$preferred} is outside pool {$pool->name}.",
+ step: 'ip_allocation',
+ );
+ }
+
+ if ($this->isIpUsed($preferred, $pool, $column)) {
+ throw new ProvisioningException(
+ "IP address {$preferred} is already in use.",
+ step: 'ip_allocation',
+ );
+ }
+
+ return $preferred;
+ }
+
+ $start = ip2long($pool->start_ip);
+ $end = ip2long($pool->end_ip);
+
+ if ($start === false || $end === false || $start > $end) {
+ throw new ProvisioningException('Invalid IP pool range.', step: 'ip_allocation');
+ }
+
+ $used = $this->usedIpsInPool($pool, $column);
+
+ for ($long = $start; $long <= $end; $long++) {
+ if (! isset($used[$long])) {
+ return long2ip($long);
+ }
+ }
+
+ throw new ProvisioningException("No free IPs in pool {$pool->name}.", step: 'ip_allocation');
+ }, 3);
+ }
+
+ private function defaultPrivatePool(): IpPool
+ {
+ $pool = IpPool::query()
+ ->where('type', IpPoolType::Private)
+ ->where('is_active', true)
+ ->orderBy('id')
+ ->first();
+
+ if ($pool) {
+ return $pool;
+ }
+
+ return $this->bootstrapPoolFromConfig(IpPoolType::Private);
+ }
+
+ private function bootstrapPublicPool(): IpPool
+ {
+ return IpPool::query()->firstOrCreate(
+ ['name' => 'Öffentlich 185.45.149.x', 'type' => IpPoolType::Public],
+ [
+ 'start_ip' => config('hosting.public_network.ip_pool_start'),
+ 'end_ip' => config('hosting.public_network.ip_pool_end'),
+ 'gateway' => config('hosting.public_network.gateway'),
+ 'cidr' => config('hosting.public_network.cidr'),
+ 'is_active' => true,
+ ],
+ );
+ }
+
+ private function bootstrapPoolFromConfig(IpPoolType $type): IpPool
+ {
+ return IpPool::query()->firstOrCreate(
+ ['name' => 'Privat 10.32.0.0/24', 'type' => IpPoolType::Private],
+ [
+ 'start_ip' => config('hosting.network.ip_pool_start'),
+ 'end_ip' => config('hosting.network.ip_pool_end'),
+ 'gateway' => config('hosting.network.gateway'),
+ 'cidr' => config('hosting.network.cidr'),
+ 'is_active' => true,
+ ],
+ );
+ }
+
+ private function usedIpsInPool(IpPool $pool, string $column): array
+ {
+ $query = Customer::query()
+ ->where('ip_pool_id', $pool->id)
+ ->whereIn('status', ['pending', 'active']);
+
+ if ($column === 'public_ip') {
+ return $query->whereNotNull('public_ip')
+ ->pluck('public_ip')
+ ->merge(
+ Customer::query()
+ ->whereIn('status', ['pending', 'active'])
+ ->whereNotNull('public_ip')
+ ->pluck('public_ip')
+ )
+ ->unique()
+ ->map(fn (string $ip) => ip2long($ip))
+ ->filter()
+ ->flip()
+ ->all();
+ }
+
+ return $query->whereNotNull('ip_address')
+ ->pluck('ip_address')
+ ->map(fn (string $ip) => ip2long($ip))
+ ->filter()
+ ->flip()
+ ->all();
+ }
+
+ private function isIpUsed(string $ip, IpPool $pool, string $column): bool
+ {
+ $check = Customer::query()
+ ->whereIn('status', ['pending', 'active']);
+
+ if ($column === 'public_ip') {
+ return (clone $check)->where('public_ip', $ip)->exists()
+ || (clone $check)->where('ip_address', $ip)->exists();
+ }
+
+ return (clone $check)->where('ip_address', $ip)->exists()
+ || (clone $check)->where('public_ip', $ip)->exists();
+ }
+}
diff --git a/app/Services/Hosting/Provisioning/ProvisioningRollback.php b/app/Services/Hosting/Provisioning/ProvisioningRollback.php
new file mode 100644
index 0000000..e5b111f
--- /dev/null
+++ b/app/Services/Hosting/Provisioning/ProvisioningRollback.php
@@ -0,0 +1,69 @@
+completed[] = ['step' => $step, 'context' => $context];
+ }
+
+ public function execute(): void
+ {
+ Log::warning('Provisioning rollback started', ['steps' => count($this->completed)]);
+
+ foreach (array_reverse($this->completed) as $entry) {
+ try {
+ match ($entry['step']) {
+ 'traefik_route' => $this->rollbackTraefik($entry['context']),
+ 'plesk_dns' => $this->rollbackDns($entry['context']),
+ 'proxmox_vm_started', 'proxmox_vm_created' => $this->rollbackVm($entry['context']),
+ default => null,
+ };
+ } catch (\Throwable $e) {
+ Log::error('Rollback step failed', [
+ 'step' => $entry['step'],
+ 'error' => $e->getMessage(),
+ ]);
+ }
+ }
+ }
+
+ private function rollbackTraefik(array $context): void
+ {
+ if (! empty($context['domain'])) {
+ $this->traefik->removeCustomerRoute($context['domain']);
+ Log::info('Rollback: Traefik route removed', $context);
+ }
+ }
+
+ private function rollbackDns(array $context): void
+ {
+ if (! empty($context['domain']) && isset($context['subdomain'])) {
+ $this->plesk->deleteARecord($context['domain'], $context['subdomain']);
+ Log::info('Rollback: Plesk DNS removed', $context);
+ }
+ }
+
+ private function rollbackVm(array $context): void
+ {
+ if (! empty($context['vmid'])) {
+ $this->proxmox->deleteVM((int) $context['vmid']);
+ Log::info('Rollback: Proxmox VM deleted', $context);
+ }
+ }
+}
diff --git a/app/Services/Hosting/Provisioning/ProvisioningService.php b/app/Services/Hosting/Provisioning/ProvisioningService.php
new file mode 100644
index 0000000..daf6f97
--- /dev/null
+++ b/app/Services/Hosting/Provisioning/ProvisioningService.php
@@ -0,0 +1,262 @@
+proxmox, $this->plesk, $this->traefik);
+
+ try {
+ return DB::transaction(function () use ($customer, $data, $rollback) {
+ $this->updateStep($customer, 'reserving_vmid', 'pending');
+
+ $vmid = $data->vmid ?? $customer->vmid ?? $this->reserveVmid($customer);
+ $customer->update(['vmid' => $vmid]);
+ $this->vmidReservation->activate($vmid, $customer);
+
+ $pool = $this->resolveIpPool($customer);
+ $gateway = $pool->gateway ?? config('hosting.network.gateway');
+ $cidr = $pool->cidr ?? (int) config('hosting.network.cidr');
+
+ $this->updateStep($customer, 'allocating_ip');
+ $ip = $data->ip ?? $this->ipAllocator->allocateFromPool($pool);
+ $customer->update(['ip_address' => $ip, 'ip_pool_id' => $pool->id]);
+
+ $publicIp = null;
+ if (! $data->behind_traefik) {
+ $publicIp = $data->public_ip ?? $this->ipAllocator->allocatePublicIp();
+ $customer->update(['public_ip' => $publicIp]);
+ }
+
+ $ipConfig0 = $this->proxmox->buildIpConfig($ip, $gateway, $cidr);
+ $ipConfig1 = null;
+ if ($publicIp) {
+ $publicPool = IpPool::query()->where('type', 'public')->where('is_active', true)->first();
+ $ipConfig1 = $this->proxmox->buildIpConfig(
+ $publicIp,
+ $publicPool?->gateway,
+ $publicPool?->cidr ?? 32,
+ );
+ }
+
+ $vmName = $this->vmName($data->customer_name, $vmid);
+ $this->updateStep($customer, 'creating_vm');
+ $templateVmid = $this->resolveTemplateVmid($customer);
+ $this->proxmox->createVM(
+ vmid: $vmid,
+ name: $vmName,
+ cpu: $data->cpu,
+ ramMb: $data->ram,
+ diskGb: $data->disk,
+ ipConfig: $ipConfig0,
+ templateVmid: $templateVmid,
+ );
+ if ($ipConfig1) {
+ $this->proxmox->setCloudInitIps($vmid, $ipConfig0, $ipConfig1, $vmName);
+ }
+ $rollback->mark('proxmox_vm_created', ['vmid' => $vmid]);
+
+ $customer->load('devices');
+ if ($customer->devices->isNotEmpty()) {
+ $this->updateStep($customer, 'applying_devices');
+ $this->proxmox->applyDevices($vmid, $customer->devices);
+ }
+
+ $this->updateStep($customer, 'starting_vm');
+ $this->proxmox->startVM($vmid);
+ $rollback->mark('proxmox_vm_started', ['vmid' => $vmid]);
+
+ if ($customer->attached_iso) {
+ $this->updateStep($customer, 'mounting_iso');
+ $this->proxmox->mountIso($vmid, $customer->attached_iso);
+ }
+
+ if ($data->requiresTraefik()) {
+ $subdomain = $data->subdomain();
+ $this->updateStep($customer, 'creating_dns');
+ $this->plesk->createARecord($data->domain, $subdomain, $ip);
+ $rollback->mark('plesk_dns', [
+ 'domain' => $data->domain,
+ 'subdomain' => $subdomain,
+ ]);
+
+ $this->updateStep($customer, 'configuring_traefik');
+ $this->traefik->addCustomerRoute($data->domain, $ip);
+ $rollback->mark('traefik_route', ['domain' => $data->domain]);
+
+ $this->updateStep($customer, 'reloading_traefik');
+ $this->traefik->reload();
+ }
+
+ try {
+ $live = $this->proxmox->normalizeLiveStatus($this->proxmox->getVMStatus($vmid));
+ $customer->update([
+ 'status' => 'active',
+ 'provisioning_step' => 'completed',
+ 'error_message' => null,
+ 'proxmox_status' => $live['status'],
+ 'proxmox_uptime' => $live['uptime'],
+ 'proxmox_status_at' => now(),
+ ]);
+ } catch (\Throwable) {
+ $customer->update([
+ 'status' => 'active',
+ 'provisioning_step' => 'completed',
+ 'error_message' => null,
+ ]);
+ }
+
+ Log::info('Provisioning completed', [
+ 'customer_id' => $customer->id,
+ 'vmid' => $vmid,
+ 'domain' => $data->domain,
+ 'ip' => $ip,
+ 'public_ip' => $publicIp,
+ ]);
+
+ return $customer->fresh();
+ });
+ } catch (\Throwable $e) {
+ Log::error('Provisioning failed', [
+ 'customer_id' => $customer->id,
+ 'step' => $customer->provisioning_step,
+ 'error' => $e->getMessage(),
+ ]);
+
+ $rollback->execute();
+
+ $customer->update([
+ 'status' => 'failed',
+ 'error_message' => $e->getMessage(),
+ ]);
+
+ if ($e instanceof ProvisioningException) {
+ throw $e;
+ }
+
+ throw new ProvisioningException(
+ $e->getMessage(),
+ step: $customer->provisioning_step,
+ previous: $e,
+ );
+ }
+ }
+
+ public function deprovision(Customer $customer): void
+ {
+ if ($customer->domain && $customer->behind_traefik) {
+ try {
+ $this->traefik->removeCustomerRoute($customer->domain);
+ $this->traefik->reload();
+ } catch (\Throwable $e) {
+ Log::warning('Deprovision: Traefik cleanup failed', ['error' => $e->getMessage()]);
+ }
+
+ try {
+ $data = CustomerProvisionData::fromCustomer($customer);
+ $this->plesk->deleteARecord($customer->domain, $data->subdomain());
+ } catch (\Throwable $e) {
+ Log::warning('Deprovision: DNS cleanup failed', ['error' => $e->getMessage()]);
+ }
+ }
+
+ if ($customer->vmid) {
+ $this->proxmox->deleteVM((int) $customer->vmid);
+ }
+
+ $customer->update([
+ 'status' => 'failed',
+ 'provisioning_step' => 'deprovisioned',
+ 'error_message' => null,
+ ]);
+ }
+
+ private function resolveIpPool(Customer $customer): IpPool
+ {
+ if ($customer->ip_pool_id) {
+ $pool = IpPool::query()->find($customer->ip_pool_id);
+ if ($pool && $pool->is_active) {
+ return $pool;
+ }
+ }
+
+ return IpPool::query()
+ ->where('type', 'private')
+ ->where('is_active', true)
+ ->orderBy('id')
+ ->firstOrFail();
+ }
+
+ private function reserveVmid(Customer $customer): int
+ {
+ if ($customer->vmid) {
+ $vmid = (int) $customer->vmid;
+ if ($this->vmidReservation->isVmidBlocked($vmid)) {
+ return $vmid;
+ }
+ }
+
+ $vmid = $this->vmidReservation->reserveForCustomer($customer);
+
+ if ($this->proxmox->vmExists($vmid)) {
+ throw new ProvisioningException(
+ "VMID {$vmid} already exists in Proxmox.",
+ step: 'reserving_vmid',
+ );
+ }
+
+ return $vmid;
+ }
+
+ private function vmName(string $customerName, int $vmid): string
+ {
+ $slug = preg_replace('/[^a-z0-9-]/', '-', strtolower($customerName)) ?: 'customer';
+
+ return substr("host-{$slug}-{$vmid}", 0, 63);
+ }
+
+ private function resolveTemplateVmid(Customer $customer): ?int
+ {
+ if ($customer->provision_mode === 'empty') {
+ return null;
+ }
+
+ $fromDb = VmTemplate::query()->where('is_active', true)->orderBy('id')->value('proxmox_template_vmid');
+ $fromEnv = config('hosting.proxmox.template_vmid');
+
+ return $fromDb ? (int) $fromDb : ($fromEnv ? (int) $fromEnv : null);
+ }
+
+ private function updateStep(Customer $customer, string $step, ?string $status = null): void
+ {
+ $payload = ['provisioning_step' => $step];
+
+ if ($status !== null) {
+ $payload['status'] = $status;
+ }
+
+ $customer->update($payload);
+ Log::info('Provisioning step', ['customer_id' => $customer->id, 'step' => $step]);
+ }
+}
diff --git a/app/Services/Hosting/Provisioning/VmidReservationService.php b/app/Services/Hosting/Provisioning/VmidReservationService.php
new file mode 100644
index 0000000..0c0cfb6
--- /dev/null
+++ b/app/Services/Hosting/Provisioning/VmidReservationService.php
@@ -0,0 +1,104 @@
+findNextAvailableVmid();
+
+ VmidReservation::query()->create([
+ 'vmid' => $vmid,
+ 'customer_id' => $customer->id,
+ 'status' => 'reserved',
+ ]);
+
+ return $vmid;
+ });
+ }
+
+ public function activate(int $vmid, Customer $customer): void
+ {
+ VmidReservation::query()
+ ->where('vmid', $vmid)
+ ->where('customer_id', $customer->id)
+ ->update([
+ 'status' => 'active',
+ 'release_at' => null,
+ ]);
+ }
+
+ public function scheduleRelease(int $vmid, ?Customer $customer = null): void
+ {
+ $hours = (int) config('hosting.vmid.release_after_hours', 48);
+
+ $query = VmidReservation::query()->where('vmid', $vmid);
+
+ if ($customer) {
+ $query->where('customer_id', $customer->id);
+ }
+
+ $query->update([
+ 'status' => 'pending_release',
+ 'release_at' => now()->addHours($hours),
+ ]);
+ }
+
+ public function releaseDue(): int
+ {
+ $count = 0;
+
+ $due = VmidReservation::query()
+ ->where('status', 'pending_release')
+ ->where('release_at', '<=', now())
+ ->get();
+
+ foreach ($due as $reservation) {
+ $reservation->update([
+ 'status' => 'released',
+ 'released_at' => now(),
+ ]);
+ $count++;
+ }
+
+ return $count;
+ }
+
+ public function isVmidBlocked(int $vmid): bool
+ {
+ return VmidReservation::query()
+ ->where('vmid', $vmid)
+ ->whereIn('status', ['reserved', 'active', 'pending_release'])
+ ->exists();
+ }
+
+ private function findNextAvailableVmid(): int
+ {
+ $start = (int) config('hosting.vmid.range_start', 2000);
+ $end = (int) config('hosting.vmid.range_end', 2999);
+
+ $blocked = VmidReservation::query()
+ ->whereIn('status', ['reserved', 'active', 'pending_release'])
+ ->pluck('vmid')
+ ->flip()
+ ->all();
+
+ for ($vmid = $start; $vmid <= $end; $vmid++) {
+ if (! isset($blocked[$vmid])) {
+ return $vmid;
+ }
+ }
+
+ throw new ProvisioningException(
+ "No free VMID in range {$start}-{$end}.",
+ step: 'reserving_vmid',
+ );
+ }
+}
diff --git a/app/Services/Hosting/Proxmox/ProxmoxClient.php b/app/Services/Hosting/Proxmox/ProxmoxClient.php
new file mode 100644
index 0000000..a7915dc
--- /dev/null
+++ b/app/Services/Hosting/Proxmox/ProxmoxClient.php
@@ -0,0 +1,591 @@
+http !== null) {
+ return $this->http;
+ }
+
+ $token = config('hosting.proxmox.token');
+ if (empty($token)) {
+ throw new ProxmoxException('PROXMOX_TOKEN is not configured.');
+ }
+
+ $verify = filter_var(config('hosting.proxmox.verify_ssl'), FILTER_VALIDATE_BOOLEAN);
+
+ return $this->http = Http::baseUrl(rtrim(config('hosting.proxmox.url'), '/').'/api2/json')
+ ->withHeaders([
+ 'Authorization' => str_starts_with($token, 'PVEAPIToken=') ? $token : 'PVEAPIToken='.$token,
+ ])
+ ->acceptJson()
+ ->timeout((int) config('hosting.proxmox.timeout', 120))
+ ->when(! $verify, fn (PendingRequest $request) => $request->withoutVerifying());
+ }
+
+ public function getNextVmid(): int
+ {
+ $response = $this->request('GET', '/cluster/nextid');
+
+ return (int) $response['data'];
+ }
+
+ public function vmExists(int $vmid): bool
+ {
+ try {
+ $this->getVMStatus($vmid);
+
+ return true;
+ } catch (ProxmoxException $e) {
+ if (str_contains($e->getMessage(), 'does not exist') || $e->getCode() === 404) {
+ return false;
+ }
+
+ throw $e;
+ }
+ }
+
+ public function createVM(
+ int $vmid,
+ string $name,
+ int $cpu,
+ int $ramMb,
+ int $diskGb,
+ string $ipConfig,
+ ?int $templateVmid = null,
+ ): void {
+ if ($this->vmExists($vmid)) {
+ throw new ProxmoxException("VM {$vmid} already exists.", step: 'proxmox_create');
+ }
+
+ $node = config('hosting.proxmox.node');
+ $storage = config('hosting.proxmox.storage');
+ $bridge = config('hosting.proxmox.bridge');
+ $templateVmid ??= config('hosting.proxmox.template_vmid') ? (int) config('hosting.proxmox.template_vmid') : null;
+
+ Log::info('Proxmox: creating VM', compact('vmid', 'name', 'cpu', 'ramMb', 'diskGb'));
+
+ if ($templateVmid) {
+ $this->cloneFromTemplateVmid((int) $templateVmid, $vmid, $name);
+ $this->resizeVmIfNeeded($vmid, $cpu, $ramMb, $diskGb);
+ $this->configureCloudInit($vmid, $ipConfig, $name);
+ } else {
+ $this->createVmFromScratch($vmid, $name, $cpu, $ramMb, $diskGb, $ipConfig, $node, $storage, $bridge);
+ }
+ }
+
+ public function setCloudInitIps(int $vmid, string $ipconfig0, ?string $ipconfig1, string $name): void
+ {
+ $this->configureCloudInit($vmid, $ipconfig0, $name, $ipconfig1);
+ }
+
+ public function node(): string
+ {
+ return (string) config('hosting.proxmox.node');
+ }
+
+ public function startVM(int $vmid): void
+ {
+ $this->powerAction($vmid, 'start');
+ }
+
+ public function shutdownVM(int $vmid, int $timeout = 60): void
+ {
+ $this->powerAction($vmid, 'shutdown', ['timeout' => $timeout]);
+ }
+
+ public function stopVM(int $vmid): void
+ {
+ $this->powerAction($vmid, 'stop');
+ }
+
+ public function rebootVM(int $vmid, int $timeout = 60): void
+ {
+ $this->powerAction($vmid, 'reboot', ['timeout' => $timeout]);
+ }
+
+ public function resetVM(int $vmid): void
+ {
+ $this->powerAction($vmid, 'reset');
+ }
+
+ public function powerAction(int $vmid, string $action, array $params = []): void
+ {
+ $node = $this->node();
+ Log::info('Proxmox: power action', ['vmid' => $vmid, 'action' => $action]);
+ $this->request('POST', "/nodes/{$node}/qemu/{$vmid}/status/{$action}", $params);
+ }
+
+ public function getVmConfig(int $vmid): array
+ {
+ $node = $this->node();
+ $response = $this->request('GET', "/nodes/{$node}/qemu/{$vmid}/config");
+
+ return $response['data'] ?? [];
+ }
+
+ /**
+ * @return array
+ */
+ public function listIsos(?string $storage = null): array
+ {
+ $storage ??= config('hosting.proxmox.iso_storage', 'local');
+ $node = $this->node();
+
+ $response = $this->request('GET', "/nodes/{$node}/storage/{$storage}/content", [
+ 'content' => 'iso',
+ ]);
+
+ $items = $response['data'] ?? [];
+
+ return collect($items)
+ ->filter(fn ($item) => is_array($item) && ($item['content'] ?? '') === 'iso')
+ ->map(fn (array $item) => [
+ 'volid' => (string) ($item['volid'] ?? ''),
+ 'label' => (string) ($item['volid'] ?? $item['name'] ?? 'unknown'),
+ 'size' => (int) ($item['size'] ?? 0),
+ ])
+ ->filter(fn (array $item) => $item['volid'] !== '')
+ ->values()
+ ->all();
+ }
+
+ public function mountIso(int $vmid, string $isoVolid, ?string $device = null): void
+ {
+ $device ??= config('hosting.proxmox.iso_device', 'ide2');
+ $node = $this->node();
+
+ if (! str_contains($isoVolid, ':')) {
+ $storage = config('hosting.proxmox.iso_storage', 'local');
+ $isoVolid = "{$storage}:iso/{$isoVolid}";
+ }
+
+ Log::info('Proxmox: mounting ISO', ['vmid' => $vmid, 'iso' => $isoVolid, 'device' => $device]);
+
+ $this->request('PUT', "/nodes/{$node}/qemu/{$vmid}/config", [
+ $device => "{$isoVolid},media=cdrom",
+ 'boot' => "order={$device};scsi0",
+ ]);
+ }
+
+ public function unmountIso(int $vmid, ?string $device = null): void
+ {
+ $device ??= config('hosting.proxmox.iso_device', 'ide2');
+ $node = $this->node();
+
+ Log::info('Proxmox: unmounting ISO', ['vmid' => $vmid, 'device' => $device]);
+
+ $this->request('PUT', "/nodes/{$node}/qemu/{$vmid}/config", [
+ 'delete' => $device,
+ 'boot' => 'order=scsi0',
+ ]);
+ }
+
+ /**
+ * @return array{port: string, ticket: string, cert: ?string, node: string, vmid: int}
+ */
+ public function createVncProxy(int $vmid): array
+ {
+ $node = $this->node();
+
+ $response = $this->request('POST', "/nodes/{$node}/qemu/{$vmid}/vncproxy", [
+ 'websocket' => 1,
+ ]);
+
+ $data = $response['data'] ?? [];
+
+ return [
+ 'port' => (string) ($data['port'] ?? ''),
+ 'ticket' => (string) ($data['ticket'] ?? ''),
+ 'cert' => isset($data['cert']) ? (string) $data['cert'] : null,
+ 'node' => $node,
+ 'vmid' => $vmid,
+ ];
+ }
+
+ public function buildVncWebSocketUrl(int $vmid, string $port, string $ticket): string
+ {
+ $base = rtrim(config('hosting.proxmox.console_ws_url') ?: config('hosting.proxmox.url'), '/');
+ $parsed = parse_url($base);
+ $scheme = ($parsed['scheme'] ?? 'https') === 'https' ? 'wss' : 'ws';
+ $host = $parsed['host'] ?? 'localhost';
+ $portNum = $parsed['port'] ?? (($parsed['scheme'] ?? 'https') === 'https' ? 8006 : 80);
+ $node = $this->node();
+
+ return sprintf(
+ '%s://%s:%s/api2/json/nodes/%s/qemu/%d/vncwebsocket?port=%s&vncticket=%s',
+ $scheme,
+ $host,
+ $portNum,
+ $node,
+ $vmid,
+ urlencode($port),
+ urlencode($ticket),
+ );
+ }
+
+ public function normalizeLiveStatus(array $status): array
+ {
+ return [
+ 'status' => (string) ($status['status'] ?? 'unknown'),
+ 'uptime' => (int) ($status['uptime'] ?? 0),
+ 'cpu' => (float) ($status['cpu'] ?? 0),
+ 'mem' => (int) ($status['mem'] ?? 0),
+ 'maxmem' => (int) ($status['maxmem'] ?? 0),
+ 'disk' => (int) ($status['disk'] ?? 0),
+ 'maxdisk' => (int) ($status['maxdisk'] ?? 0),
+ ];
+ }
+
+ public function waitForTask(string $upid, int $maxSeconds = 600): void
+ {
+ $node = $this->node();
+ $deadline = time() + $maxSeconds;
+
+ while (time() < $deadline) {
+ $response = $this->request('GET', '/nodes/'.$node.'/tasks/'.rawurlencode($upid).'/status');
+ $status = $response['data']['status'] ?? '';
+ if ($status === 'stopped') {
+ $exit = $response['data']['exitstatus'] ?? 'OK';
+ if ($exit !== 'OK') {
+ throw new ProxmoxException('Proxmox task failed: '.$exit, step: 'proxmox_task');
+ }
+
+ return;
+ }
+ sleep(2);
+ }
+
+ throw new ProxmoxException('Proxmox task timeout: '.$upid, step: 'proxmox_task');
+ }
+
+ public function createSnapshot(int $vmid, string $name): void
+ {
+ $node = $this->node();
+ $response = $this->request('POST', "/nodes/{$node}/qemu/{$vmid}/snapshot", [
+ 'snapname' => $name,
+ ]);
+ if (! empty($response['data'])) {
+ $this->waitForTask($response['data']);
+ }
+ }
+
+ public function rollbackSnapshot(int $vmid, string $name): void
+ {
+ $node = $this->node();
+ $response = $this->request('POST', "/nodes/{$node}/qemu/{$vmid}/snapshot/{$name}/rollback");
+ if (! empty($response['data'])) {
+ $this->waitForTask($response['data']);
+ }
+ }
+
+ public function deleteSnapshot(int $vmid, string $name): void
+ {
+ $node = $this->node();
+ $this->request('DELETE', "/nodes/{$node}/qemu/{$vmid}/snapshot/{$name}");
+ }
+
+ /**
+ * @return array
+ */
+ public function listSnapshots(int $vmid): array
+ {
+ $node = $this->node();
+ $response = $this->request('GET', "/nodes/{$node}/qemu/{$vmid}/snapshot");
+
+ return collect($response['data'] ?? [])
+ ->filter(fn ($item) => is_array($item))
+ ->map(fn (array $item) => [
+ 'name' => (string) ($item['name'] ?? ''),
+ 'description' => (string) ($item['description'] ?? ''),
+ ])
+ ->filter(fn ($item) => $item['name'] !== '')
+ ->values()
+ ->all();
+ }
+
+ public function startBackup(int $vmid, string $storage): string
+ {
+ $node = $this->node();
+ $response = $this->request('POST', "/nodes/{$node}/vzdump", [
+ 'vmid' => $vmid,
+ 'storage' => $storage,
+ 'mode' => 'snapshot',
+ 'compress' => 'zstd',
+ ]);
+
+ return (string) ($response['data'] ?? '');
+ }
+
+ public function getFirewallRules(int $vmid): array
+ {
+ $node = $this->node();
+ $response = $this->request('GET', "/nodes/{$node}/qemu/{$vmid}/firewall/rules");
+
+ return $response['data'] ?? [];
+ }
+
+ public function setFirewallRules(int $vmid, array $rules): void
+ {
+ $node = $this->node();
+ // Replace all rules: delete existing then add - simplified: enable firewall + pos rules via PUT pos
+ $this->request('PUT', "/nodes/{$node}/qemu/{$vmid}/firewall/options", ['enable' => 1]);
+ foreach ($rules as $pos => $rule) {
+ $this->request('POST', "/nodes/{$node}/qemu/{$vmid}/firewall/rules", array_merge($rule, ['pos' => $pos]));
+ }
+ }
+
+ public function uploadIsoToStorage(string $storage, string $filename, string $localPath): void
+ {
+ $node = $this->node();
+ $client = $this->http();
+ $response = $client->attach(
+ 'content',
+ file_get_contents($localPath),
+ $filename
+ )->post("/nodes/{$node}/storage/{$storage}/upload", [
+ 'content' => 'iso',
+ 'filename' => $filename,
+ ]);
+
+ if ($response->failed()) {
+ throw new ProxmoxException('ISO upload failed: '.$response->body(), step: 'proxmox_upload');
+ }
+ }
+
+ public function deleteStorageFile(string $storage, string $volid): void
+ {
+ $node = $this->node();
+ $this->request('DELETE', "/nodes/{$node}/storage/{$storage}/content/".urlencode($volid));
+ }
+
+ public function cloneFromTemplateVmid(int $templateVmid, int $newVmid, string $name): void
+ {
+ $node = $this->node();
+ $response = $this->request('POST', "/nodes/{$node}/qemu/{$templateVmid}/clone", [
+ 'newid' => $newVmid,
+ 'name' => $name,
+ 'full' => 1,
+ 'target' => $node,
+ ]);
+ if (! empty($response['data'])) {
+ $this->waitForTask($response['data']);
+ }
+ }
+
+ public function deleteVM(int $vmid): void
+ {
+ if (! $this->vmExists($vmid)) {
+ Log::warning('Proxmox: VM already absent, skipping delete', ['vmid' => $vmid]);
+
+ return;
+ }
+
+ try {
+ $status = $this->getVMStatus($vmid);
+ if (($status['status'] ?? '') === 'running') {
+ $this->stopVM($vmid);
+ $this->waitUntilStopped($vmid);
+ }
+ } catch (ProxmoxException) {
+ // continue with delete attempt
+ }
+
+ $node = config('hosting.proxmox.node');
+ Log::info('Proxmox: deleting VM', ['vmid' => $vmid]);
+ $this->request('DELETE', "/nodes/{$node}/qemu/{$vmid}");
+ }
+
+ public function getVMStatus(int $vmid): array
+ {
+ $node = config('hosting.proxmox.node');
+ $response = $this->request('GET', "/nodes/{$node}/qemu/{$vmid}/status/current");
+
+ return $response['data'] ?? [];
+ }
+
+ public function buildIpConfig(string $ip, ?string $gateway = null, ?int $cidr = null): string
+ {
+ $cidr ??= (int) config('hosting.network.cidr');
+ $gateway ??= config('hosting.network.gateway');
+
+ return "ip={$ip}/{$cidr},gw={$gateway}";
+ }
+
+ /**
+ * @param iterable $devices
+ */
+ public function applyDevices(int $vmid, iterable $devices): void
+ {
+ $node = config('hosting.proxmox.node');
+ $storage = config('hosting.proxmox.storage');
+ $params = [];
+
+ foreach ($devices as $device) {
+ $config = $device->config ?? [];
+ $slot = $device->slot;
+
+ match ($device->type) {
+ \App\Models\VmDevice::TYPE_DISK => $params[$slot ?? 'scsi1'] = sprintf(
+ '%s:%d',
+ $config['storage'] ?? $storage,
+ (int) ($config['size_gb'] ?? 10),
+ ),
+ \App\Models\VmDevice::TYPE_NETWORK => $params[$slot ?? 'net1'] = sprintf(
+ '%s,bridge=%s',
+ $config['model'] ?? 'virtio',
+ $config['bridge'] ?? config('hosting.proxmox.bridge'),
+ ),
+ \App\Models\VmDevice::TYPE_USB => $params[$slot ?? 'usb0'] = $config['host_id'] ?? 'host=0',
+ \App\Models\VmDevice::TYPE_PCI => $params[$slot ?? 'hostpci0'] = $config['address'] ?? '',
+ default => null,
+ };
+ }
+
+ $params = array_filter($params, fn ($v) => $v !== '' && $v !== null);
+
+ if ($params === []) {
+ return;
+ }
+
+ Log::info('Proxmox: applying VM devices', ['vmid' => $vmid, 'devices' => array_keys($params)]);
+ $this->request('PUT', "/nodes/{$node}/qemu/{$vmid}/config", $params);
+ }
+
+ public function updateVmResources(int $vmid, int $cpu, int $ramMb, int $diskGb): void
+ {
+ $this->resizeVmIfNeeded($vmid, $cpu, $ramMb, $diskGb);
+ }
+
+ private function resizeVmIfNeeded(int $vmid, int $cpu, int $ramMb, int $diskGb): void
+ {
+ $node = config('hosting.proxmox.node');
+
+ $this->request('PUT', "/nodes/{$node}/qemu/{$vmid}/config", [
+ 'cores' => $cpu,
+ 'memory' => $ramMb,
+ ]);
+
+ // Disk resize depends on storage layout; best-effort grow on scsi0
+ try {
+ $this->request('PUT', "/nodes/{$node}/qemu/{$vmid}/resize", [
+ 'disk' => 'scsi0',
+ 'size' => $diskGb.'G',
+ ]);
+ } catch (ProxmoxException $e) {
+ Log::warning('Proxmox: disk resize skipped', ['vmid' => $vmid, 'error' => $e->getMessage()]);
+ }
+ }
+
+ private function configureCloudInit(int $vmid, string $ipConfig, string $name, ?string $ipConfig1 = null): void
+ {
+ $node = config('hosting.proxmox.node');
+ $bridge = config('hosting.proxmox.bridge');
+
+ $params = [
+ 'name' => $name,
+ 'ipconfig0' => $ipConfig,
+ 'net0' => "virtio,bridge={$bridge}",
+ ];
+
+ if ($ipConfig1) {
+ $publicBridge = config('hosting.proxmox.public_bridge', 'vmbr1');
+ $params['ipconfig1'] = $ipConfig1;
+ $params['net1'] = "virtio,bridge={$publicBridge}";
+ }
+
+ $this->request('PUT', "/nodes/{$node}/qemu/{$vmid}/config", $params);
+ }
+
+ private function createVmFromScratch(
+ int $vmid,
+ string $name,
+ int $cpu,
+ int $ramMb,
+ int $diskGb,
+ string $ipConfig,
+ string $node,
+ string $storage,
+ string $bridge,
+ ): void {
+ $this->request('POST', "/nodes/{$node}/qemu", [
+ 'vmid' => $vmid,
+ 'name' => $name,
+ 'cores' => $cpu,
+ 'memory' => $ramMb,
+ 'ostype' => 'l26',
+ 'scsihw' => 'virtio-scsi-pci',
+ 'scsi0' => "{$storage}:{$diskGb}",
+ 'ide2' => "{$storage}:cloudinit",
+ 'boot' => 'order=scsi0',
+ 'net0' => "virtio,bridge={$bridge}",
+ 'ipconfig0' => $ipConfig,
+ 'agent' => 1,
+ ]);
+ }
+
+ private function waitUntilStopped(int $vmid, int $maxSeconds = 60): void
+ {
+ $deadline = time() + $maxSeconds;
+
+ while (time() < $deadline) {
+ $status = $this->getVMStatus($vmid);
+ if (($status['status'] ?? '') !== 'running') {
+ return;
+ }
+ sleep(2);
+ }
+
+ throw new ProxmoxException("Timeout waiting for VM {$vmid} to stop.", step: 'proxmox_stop');
+ }
+
+ private function request(string $method, string $uri, array $data = []): array
+ {
+ try {
+ $client = $this->http();
+ $response = match (strtoupper($method)) {
+ 'GET' => $client->get($uri, $data),
+ 'POST' => $client->asForm()->post($uri, $data),
+ 'PUT' => $client->asForm()->put($uri, $data),
+ 'DELETE' => $client->delete($uri, $data),
+ default => throw new ProxmoxException("Unsupported HTTP method: {$method}"),
+ };
+
+ if ($response->failed()) {
+ $message = $response->json('errors') ?? $response->json('message') ?? $response->body();
+ throw new ProxmoxException(
+ 'Proxmox API error: '.(is_string($message) ? $message : json_encode($message)),
+ step: 'proxmox_api',
+ context: ['uri' => $uri, 'status' => $response->status()],
+ code: $response->status(),
+ );
+ }
+
+ return $response->json() ?? [];
+ } catch (ConnectionException $e) {
+ throw new ProxmoxException(
+ 'Proxmox connection timeout or unreachable: '.$e->getMessage(),
+ step: 'proxmox_connection',
+ previous: $e,
+ );
+ } catch (RequestException $e) {
+ throw new ProxmoxException(
+ 'Proxmox HTTP error: '.$e->getMessage(),
+ step: 'proxmox_http',
+ previous: $e,
+ );
+ }
+ }
+}
diff --git a/app/Services/Hosting/Proxmox/VmManagementService.php b/app/Services/Hosting/Proxmox/VmManagementService.php
new file mode 100644
index 0000000..2d0827d
--- /dev/null
+++ b/app/Services/Hosting/Proxmox/VmManagementService.php
@@ -0,0 +1,192 @@
+vmid) {
+ throw new ProvisioningException('VM ist noch nicht in Proxmox provisioniert.', step: 'vm_not_ready');
+ }
+
+ if ($vm->status !== 'active') {
+ throw new ProvisioningException('VM ist nicht aktiv (Status: '.$vm->status.').', step: 'vm_not_active');
+ }
+ }
+
+ public function refreshLiveStatus(Customer $vm): array
+ {
+ $this->assertManageable($vm);
+
+ $raw = $this->proxmox->getVMStatus((int) $vm->vmid);
+ $normalized = $this->proxmox->normalizeLiveStatus($raw);
+
+ $vm->update([
+ 'proxmox_status' => $normalized['status'],
+ 'proxmox_uptime' => $normalized['uptime'],
+ 'proxmox_status_at' => now(),
+ ]);
+
+ return $normalized;
+ }
+
+ public function power(Customer $vm, VmPowerAction $action, User $user): void
+ {
+ $this->assertManageable($vm);
+
+ $live = $this->refreshLiveStatus($vm);
+ $isRunning = ($live['status'] ?? '') === 'running';
+
+ if ($action->requiresRunning() && ! $isRunning) {
+ throw new ProxmoxException('VM läuft nicht – Aktion nicht möglich.', step: 'power_state');
+ }
+
+ if ($action->requiresStopped() && $isRunning) {
+ throw new ProxmoxException('VM läuft bereits.', step: 'power_state');
+ }
+
+ try {
+ match ($action) {
+ VmPowerAction::Start => $this->proxmox->startVM((int) $vm->vmid),
+ VmPowerAction::Shutdown => $this->proxmox->shutdownVM((int) $vm->vmid),
+ VmPowerAction::Stop => $this->proxmox->stopVM((int) $vm->vmid),
+ VmPowerAction::Reboot => $this->proxmox->rebootVM((int) $vm->vmid),
+ VmPowerAction::Reset => $this->proxmox->resetVM((int) $vm->vmid),
+ };
+
+ $this->log($vm, $user, 'power.'.$action->value, 'success');
+ $this->refreshLiveStatus($vm);
+ } catch (\Throwable $e) {
+ $this->log($vm, $user, 'power.'.$action->value, 'failed', $e->getMessage());
+ throw $e;
+ }
+ }
+
+ public function mountIso(Customer $vm, string $isoVolid, User $user): void
+ {
+ $this->assertManageable($vm);
+
+ $available = collect($this->proxmox->listIsos())->pluck('volid');
+ if (! $available->contains($isoVolid)) {
+ throw new ProxmoxException('ISO nicht im Storage gefunden.', step: 'iso_invalid');
+ }
+
+ try {
+ $this->proxmox->mountIso((int) $vm->vmid, $isoVolid);
+ $vm->update(['attached_iso' => $isoVolid]);
+ $this->log($vm, $user, 'iso.mount', 'success', null, ['iso' => $isoVolid]);
+ } catch (\Throwable $e) {
+ $this->log($vm, $user, 'iso.mount', 'failed', $e->getMessage());
+ throw $e;
+ }
+ }
+
+ public function unmountIso(Customer $vm, User $user): void
+ {
+ $this->assertManageable($vm);
+
+ try {
+ $this->proxmox->unmountIso((int) $vm->vmid);
+ $vm->update(['attached_iso' => null]);
+ $this->log($vm, $user, 'iso.unmount', 'success');
+ } catch (\Throwable $e) {
+ $this->log($vm, $user, 'iso.unmount', 'failed', $e->getMessage());
+ throw $e;
+ }
+ }
+
+ /**
+ * @return array{token: string, ws_url: string, vmid: int, node: string, expires_at: int}
+ */
+ public function createConsoleSession(Customer $vm, User $user): array
+ {
+ $this->assertManageable($vm);
+
+ $live = $this->refreshLiveStatus($vm);
+ if (($live['status'] ?? '') !== 'running') {
+ throw new ProxmoxException('Konsole nur bei laufender VM verfügbar. Bitte VM starten.', step: 'console_not_running');
+ }
+
+ $proxy = $this->proxmox->createVncProxy((int) $vm->vmid);
+
+ if ($proxy['port'] === '' || $proxy['ticket'] === '') {
+ throw new ProxmoxException('VNC-Proxy konnte nicht erstellt werden.', step: 'console_proxy');
+ }
+
+ $token = Str::random(64);
+ $proxmoxWsUrl = $this->proxmox->buildVncWebSocketUrl((int) $vm->vmid, $proxy['port'], $proxy['ticket']);
+ $expiresAt = now()->addMinutes(5)->timestamp;
+
+ $wsUrl = $proxmoxWsUrl;
+ if (config('hosting.console.proxy_enabled') && config('hosting.console.proxy_ws_url')) {
+ $wsUrl = rtrim(config('hosting.console.proxy_ws_url'), '/').'/'.$token;
+ }
+
+ Cache::put($this->consoleCacheKey($token), [
+ 'customer_id' => $vm->id,
+ 'user_id' => $user->id,
+ 'ws_url' => $proxmoxWsUrl,
+ 'ticket' => $proxy['ticket'],
+ 'port' => $proxy['port'],
+ 'vmid' => $vm->vmid,
+ 'node' => $proxy['node'],
+ 'cert' => $proxy['cert'],
+ ], 300);
+
+ $this->log($vm, $user, 'console.open', 'success');
+
+ return [
+ 'token' => $token,
+ 'ws_url' => $wsUrl,
+ 'vmid' => (int) $vm->vmid,
+ 'node' => $proxy['node'],
+ 'expires_at' => $expiresAt,
+ ];
+ }
+
+ public function getConsoleSession(string $token, User $user): array
+ {
+ $data = Cache::get($this->consoleCacheKey($token));
+
+ if (! $data) {
+ throw new ProxmoxException('Konsole-Session abgelaufen oder ungültig.', step: 'console_expired');
+ }
+
+ if ($data['user_id'] !== $user->id && ! $user->isAdmin()) {
+ throw new ProxmoxException('Kein Zugriff auf diese Konsole.', step: 'console_forbidden');
+ }
+
+ return $data;
+ }
+
+ public function consoleCacheKey(string $token): string
+ {
+ return 'vm_console:'.$token;
+ }
+
+ private function log(Customer $vm, User $user, string $action, string $status, ?string $message = null, array $meta = []): void
+ {
+ VmActivityLog::query()->create([
+ 'customer_id' => $vm->id,
+ 'user_id' => $user->id,
+ 'action' => $action,
+ 'status' => $status,
+ 'message' => $message,
+ 'meta' => $meta ?: null,
+ ]);
+ }
+}
diff --git a/app/Services/Hosting/Reinstall/ReinstallService.php b/app/Services/Hosting/Reinstall/ReinstallService.php
new file mode 100644
index 0000000..8fa1a52
--- /dev/null
+++ b/app/Services/Hosting/Reinstall/ReinstallService.php
@@ -0,0 +1,40 @@
+vmid) {
+ throw new \RuntimeException('VM ist nicht provisioniert.');
+ }
+
+ $this->snapshots->autoBeforeDestructive($vm, $user, 'reinstall');
+
+ $vmid = (int) $vm->vmid;
+ $this->proxmox->stopVM($vmid);
+ $this->proxmox->deleteVM($vmid);
+
+ $vm->update([
+ 'status' => 'pending',
+ 'provisioning_step' => 'queued',
+ 'proxmox_status' => null,
+ 'proxmox_uptime' => null,
+ 'error_message' => null,
+ ]);
+
+ ProvisionCustomerJob::dispatch($vm->id);
+ }
+}
diff --git a/app/Services/Hosting/Snapshots/SnapshotService.php b/app/Services/Hosting/Snapshots/SnapshotService.php
new file mode 100644
index 0000000..140e2cb
--- /dev/null
+++ b/app/Services/Hosting/Snapshots/SnapshotService.php
@@ -0,0 +1,70 @@
+format('Ymd-His').'-'.Str::lower(Str::random(4));
+ $this->proxmox->createSnapshot((int) $vm->vmid, $name);
+
+ $hours = (int) (config('hosting.snapshots.retention_hours') ?? 48);
+
+ return VmSnapshot::query()->create([
+ 'customer_id' => $vm->id,
+ 'name' => $label ?? $name,
+ 'proxmox_snapshot_id' => $name,
+ 'auto_created' => $auto,
+ 'expires_at' => now()->addHours($hours),
+ ]);
+ }
+
+ public function autoBeforeDestructive(Customer $vm, User $user, string $reason): void
+ {
+ if (! config('hosting.snapshots.auto_before_destructive', true)) {
+ return;
+ }
+
+ $this->create($vm, $user, true, "auto-{$reason}");
+ }
+
+ public function rollback(Customer $vm, VmSnapshot $snapshot): void
+ {
+ $this->proxmox->rollbackSnapshot((int) $vm->vmid, $snapshot->proxmox_snapshot_id);
+ }
+
+ public function delete(Customer $vm, VmSnapshot $snapshot): void
+ {
+ $this->proxmox->deleteSnapshot((int) $vm->vmid, $snapshot->proxmox_snapshot_id);
+ $snapshot->delete();
+ }
+
+ public function pruneExpired(): int
+ {
+ $count = 0;
+ $expired = VmSnapshot::query()->where('expires_at', '<=', now())->with('vm')->get();
+
+ foreach ($expired as $snapshot) {
+ if ($snapshot->vm?->vmid) {
+ try {
+ $this->proxmox->deleteSnapshot((int) $snapshot->vm->vmid, $snapshot->proxmox_snapshot_id);
+ } catch (\Throwable) {
+ // snapshot may already be gone in Proxmox
+ }
+ }
+ $snapshot->delete();
+ $count++;
+ }
+
+ return $count;
+ }
+}
diff --git a/app/Services/Hosting/Traefik/TraefikGenerator.php b/app/Services/Hosting/Traefik/TraefikGenerator.php
new file mode 100644
index 0000000..22e7b25
--- /dev/null
+++ b/app/Services/Hosting/Traefik/TraefikGenerator.php
@@ -0,0 +1,233 @@
+sanitizeDomain($domain);
+ $ip = $this->sanitizeIp($ip);
+
+ $config = $this->loadConfig();
+ $routerKey = $this->routerKey($domain);
+ $serviceKey = $this->serviceKey($domain);
+ $port = (int) config('hosting.traefik.backend_port', 80);
+ $entrypoint = config('hosting.traefik.entrypoint', 'websecure');
+ $certResolver = config('hosting.traefik.cert_resolver', 'letsencrypt');
+
+ $config['http'] ??= [];
+ $config['http']['routers'] ??= [];
+ $config['http']['services'] ??= [];
+
+ $config['http']['routers'][$routerKey] = [
+ 'rule' => 'Host(`'.$this->escapeHostRule($domain).'`)',
+ 'entryPoints' => [$entrypoint],
+ 'service' => $serviceKey,
+ 'tls' => [
+ 'certResolver' => $certResolver,
+ ],
+ ];
+
+ $config['http']['services'][$serviceKey] = [
+ 'loadBalancer' => [
+ 'servers' => [
+ ['url' => "http://{$ip}:{$port}"],
+ ],
+ ],
+ ];
+
+ $this->writeConfig($config);
+ Log::info('Traefik: route added', ['domain' => $domain, 'ip' => $ip]);
+ }
+
+ public function removeCustomerRoute(string $domain): void
+ {
+ $domain = $this->sanitizeDomain($domain);
+ $config = $this->loadConfig();
+
+ $routerKey = $this->routerKey($domain);
+ $serviceKey = $this->serviceKey($domain);
+
+ unset($config['http']['routers'][$routerKey], $config['http']['services'][$serviceKey]);
+
+ $this->writeConfig($config);
+ Log::info('Traefik: route removed', ['domain' => $domain]);
+ }
+
+ public function rebuildAllRoutes(iterable $customers): void
+ {
+ $config = $this->loadConfig();
+ $config['http'] ??= [];
+ $config['http']['routers'] = $this->preserveNonManaged($config['http']['routers'] ?? [], 'routers');
+ $config['http']['services'] = $this->preserveNonManaged($config['http']['services'] ?? [], 'services');
+
+ foreach ($customers as $customer) {
+ if (empty($customer->domain) || empty($customer->ip_address)) {
+ continue;
+ }
+
+ $domain = $this->sanitizeDomain($customer->domain);
+ $ip = $this->sanitizeIp($customer->ip_address);
+ $routerKey = $this->routerKey($domain);
+ $serviceKey = $this->serviceKey($domain);
+ $port = (int) config('hosting.traefik.backend_port', 80);
+ $entrypoint = config('hosting.traefik.entrypoint', 'websecure');
+ $certResolver = config('hosting.traefik.cert_resolver', 'letsencrypt');
+
+ $config['http']['routers'][$routerKey] = [
+ 'rule' => 'Host(`'.$this->escapeHostRule($domain).'`)',
+ 'entryPoints' => [$entrypoint],
+ 'service' => $serviceKey,
+ 'tls' => ['certResolver' => $certResolver],
+ ];
+
+ $config['http']['services'][$serviceKey] = [
+ 'loadBalancer' => [
+ 'servers' => [['url' => "http://{$ip}:{$port}"]],
+ ],
+ ];
+ }
+
+ $this->writeConfig($config);
+ Log::info('Traefik: all customer routes rebuilt');
+ }
+
+ public function reload(): void
+ {
+ $command = config('hosting.traefik.reload_command');
+
+ if (empty($command)) {
+ Log::info('Traefik: no reload command configured, skipping reload');
+
+ return;
+ }
+
+ $result = Process::timeout(30)->run($command);
+
+ if (! $result->successful()) {
+ throw new TraefikException(
+ 'Traefik reload failed: '.$result->errorOutput(),
+ step: 'traefik_reload',
+ );
+ }
+
+ Log::info('Traefik: reload triggered');
+ }
+
+ private function loadConfig(): array
+ {
+ $path = $this->configPath();
+
+ if (! File::exists($path)) {
+ File::ensureDirectoryExists(dirname($path));
+
+ return ['http' => ['routers' => [], 'services' => []]];
+ }
+
+ $contents = File::get($path);
+
+ if (trim($contents) === '') {
+ return ['http' => ['routers' => [], 'services' => []]];
+ }
+
+ try {
+ $parsed = Yaml::parse($contents, Yaml::PARSE_EXCEPTION_ON_INVALID_TYPE);
+
+ return is_array($parsed) ? $parsed : ['http' => ['routers' => [], 'services' => []]];
+ } catch (ParseException $e) {
+ throw new TraefikException(
+ 'Failed to parse Traefik config: '.$e->getMessage(),
+ step: 'traefik_parse',
+ previous: $e,
+ );
+ }
+ }
+
+ private function writeConfig(array $config): void
+ {
+ $path = $this->configPath();
+ File::ensureDirectoryExists(dirname($path));
+
+ $yaml = Yaml::dump($config, 6, 2, Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE);
+
+ if (str_contains($yaml, "\0") || preg_match('/[\x00-\x08\x0B\x0C\x0E-\x1F]/', $yaml)) {
+ throw new TraefikException('Refusing to write invalid Traefik YAML.', step: 'traefik_write');
+ }
+
+ $tempPath = $path.'.'.uniqid('tmp', true);
+
+ if (File::put($tempPath, $yaml) === false) {
+ throw new TraefikException('Failed to write temporary Traefik config.', step: 'traefik_write');
+ }
+
+ if (! @rename($tempPath, $path)) {
+ File::delete($tempPath);
+ throw new TraefikException('Atomic rename of Traefik config failed.', step: 'traefik_write');
+ }
+ }
+
+ private function preserveNonManaged(array $items, string $type): array
+ {
+ return array_filter(
+ $items,
+ fn ($key) => ! str_starts_with((string) $key, self::MANAGED_PREFIX),
+ ARRAY_FILTER_USE_KEY,
+ );
+ }
+
+ private function routerKey(string $domain): string
+ {
+ return self::MANAGED_PREFIX.$this->slug($domain).'-router';
+ }
+
+ private function serviceKey(string $domain): string
+ {
+ return self::MANAGED_PREFIX.$this->slug($domain).'-service';
+ }
+
+ private function slug(string $domain): string
+ {
+ return Str::slug(str_replace('.', '-', $domain), '-');
+ }
+
+ private function sanitizeDomain(string $domain): string
+ {
+ $domain = strtolower(trim($domain));
+
+ if (! preg_match('/^(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)+[a-z]{2,}$/', $domain)) {
+ throw new TraefikException("Invalid domain: {$domain}", step: 'traefik_validation');
+ }
+
+ return $domain;
+ }
+
+ private function sanitizeIp(string $ip): string
+ {
+ if (! filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) {
+ throw new TraefikException("Invalid IP: {$ip}", step: 'traefik_validation');
+ }
+
+ return $ip;
+ }
+
+ private function escapeHostRule(string $domain): string
+ {
+ return str_replace(['`', '\\'], '', $domain);
+ }
+}
diff --git a/artisan b/artisan
new file mode 100755
index 0000000..c35e31d
--- /dev/null
+++ b/artisan
@@ -0,0 +1,18 @@
+#!/usr/bin/env php
+handleCommand(new ArgvInput);
+
+exit($status);
diff --git a/bootstrap/app.php b/bootstrap/app.php
new file mode 100644
index 0000000..1538f07
--- /dev/null
+++ b/bootstrap/app.php
@@ -0,0 +1,27 @@
+withRouting(
+ web: __DIR__.'/../routes/web.php',
+ api: __DIR__.'/../routes/api.php',
+ commands: __DIR__.'/../routes/console.php',
+ health: '/up',
+ )
+ ->withMiddleware(function (Middleware $middleware): void {
+ $middleware->alias([
+ 'admin' => \App\Http\Middleware\EnsureUserIsAdmin::class,
+ 'whmcs' => \App\Http\Middleware\VerifyWhmcsRequest::class,
+ '2fa' => \App\Http\Middleware\EnsureTwoFactorVerified::class,
+ ]);
+
+ $middleware->appendToGroup('web', [
+ \App\Http\Middleware\EnsureTwoFactorVerified::class,
+ ]);
+ })
+ ->withExceptions(function (Exceptions $exceptions): void {
+ //
+ })->create();
diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore
new file mode 100644
index 0000000..d6b7ef3
--- /dev/null
+++ b/bootstrap/cache/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/bootstrap/providers.php b/bootstrap/providers.php
new file mode 100644
index 0000000..c866d7b
--- /dev/null
+++ b/bootstrap/providers.php
@@ -0,0 +1,9 @@
+=5.0.0"
+ },
+ "require-dev": {
+ "doctrine/dbal": "^4.0.0",
+ "nesbot/carbon": "^2.71.0 || ^3.0.0",
+ "phpunit/phpunit": "^10.3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "KyleKatarn",
+ "email": "kylekatarnls@gmail.com"
+ }
+ ],
+ "description": "Types to use Carbon in Doctrine",
+ "keywords": [
+ "carbon",
+ "date",
+ "datetime",
+ "doctrine",
+ "time"
+ ],
+ "support": {
+ "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
+ "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/kylekatarnls",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/Carbon",
+ "type": "open_collective"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-02-09T16:56:22+00:00"
+ },
+ {
+ "name": "dasprid/enum",
+ "version": "1.0.7",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/DASPRiD/Enum.git",
+ "reference": "b5874fa9ed0043116c72162ec7f4fb50e02e7cce"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/b5874fa9ed0043116c72162ec7f4fb50e02e7cce",
+ "reference": "b5874fa9ed0043116c72162ec7f4fb50e02e7cce",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1 <9.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
+ "squizlabs/php_codesniffer": "*"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "DASPRiD\\Enum\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-2-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Ben Scholzen 'DASPRiD'",
+ "email": "mail@dasprids.de",
+ "homepage": "https://dasprids.de/",
+ "role": "Developer"
+ }
+ ],
+ "description": "PHP 7.1 enum implementation",
+ "keywords": [
+ "enum",
+ "map"
+ ],
+ "support": {
+ "issues": "https://github.com/DASPRiD/Enum/issues",
+ "source": "https://github.com/DASPRiD/Enum/tree/1.0.7"
+ },
+ "time": "2025-09-16T12:23:56+00:00"
+ },
+ {
+ "name": "dflydev/dot-access-data",
+ "version": "v3.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
+ "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
+ "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^0.12.42",
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
+ "scrutinizer/ocular": "1.6.0",
+ "squizlabs/php_codesniffer": "^3.5",
+ "vimeo/psalm": "^4.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Dflydev\\DotAccessData\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Dragonfly Development Inc.",
+ "email": "info@dflydev.com",
+ "homepage": "http://dflydev.com"
+ },
+ {
+ "name": "Beau Simensen",
+ "email": "beau@dflydev.com",
+ "homepage": "http://beausimensen.com"
+ },
+ {
+ "name": "Carlos Frutos",
+ "email": "carlos@kiwing.it",
+ "homepage": "https://github.com/cfrutos"
+ },
+ {
+ "name": "Colin O'Dell",
+ "email": "colinodell@gmail.com",
+ "homepage": "https://www.colinodell.com"
+ }
+ ],
+ "description": "Given a deep data structure, access data by dot notation.",
+ "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
+ "keywords": [
+ "access",
+ "data",
+ "dot",
+ "notation"
+ ],
+ "support": {
+ "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
+ "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
+ },
+ "time": "2024-07-08T12:26:09+00:00"
+ },
+ {
+ "name": "doctrine/inflector",
+ "version": "2.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/inflector.git",
+ "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b",
+ "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^12.0 || ^13.0",
+ "phpstan/phpstan": "^1.12 || ^2.0",
+ "phpstan/phpstan-phpunit": "^1.4 || ^2.0",
+ "phpstan/phpstan-strict-rules": "^1.6 || ^2.0",
+ "phpunit/phpunit": "^8.5 || ^12.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Inflector\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
+ "name": "Roman Borschel",
+ "email": "roman@code-factory.org"
+ },
+ {
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de"
+ },
+ {
+ "name": "Jonathan Wage",
+ "email": "jonwage@gmail.com"
+ },
+ {
+ "name": "Johannes Schmitt",
+ "email": "schmittjoh@gmail.com"
+ }
+ ],
+ "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
+ "homepage": "https://www.doctrine-project.org/projects/inflector.html",
+ "keywords": [
+ "inflection",
+ "inflector",
+ "lowercase",
+ "manipulation",
+ "php",
+ "plural",
+ "singular",
+ "strings",
+ "uppercase",
+ "words"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/inflector/issues",
+ "source": "https://github.com/doctrine/inflector/tree/2.1.0"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-08-10T19:31:58+00:00"
+ },
+ {
+ "name": "doctrine/lexer",
+ "version": "3.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/lexer.git",
+ "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
+ "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^12",
+ "phpstan/phpstan": "^1.10",
+ "phpunit/phpunit": "^10.5",
+ "psalm/plugin-phpunit": "^0.18.3",
+ "vimeo/psalm": "^5.21"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Common\\Lexer\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
+ "name": "Roman Borschel",
+ "email": "roman@code-factory.org"
+ },
+ {
+ "name": "Johannes Schmitt",
+ "email": "schmittjoh@gmail.com"
+ }
+ ],
+ "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
+ "homepage": "https://www.doctrine-project.org/projects/lexer.html",
+ "keywords": [
+ "annotations",
+ "docblock",
+ "lexer",
+ "parser",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/lexer/issues",
+ "source": "https://github.com/doctrine/lexer/tree/3.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-02-05T11:56:58+00:00"
+ },
+ {
+ "name": "dragonmantank/cron-expression",
+ "version": "v3.6.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/dragonmantank/cron-expression.git",
+ "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/d61a8a9604ec1f8c3d150d09db6ce98b32675013",
+ "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.2|^8.3|^8.4|^8.5"
+ },
+ "replace": {
+ "mtdowling/cron-expression": "^1.0"
+ },
+ "require-dev": {
+ "phpstan/extension-installer": "^1.4.3",
+ "phpstan/phpstan": "^1.12.32|^2.1.31",
+ "phpunit/phpunit": "^8.5.48|^9.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Cron\\": "src/Cron/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Chris Tankersley",
+ "email": "chris@ctankersley.com",
+ "homepage": "https://github.com/dragonmantank"
+ }
+ ],
+ "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
+ "keywords": [
+ "cron",
+ "schedule"
+ ],
+ "support": {
+ "issues": "https://github.com/dragonmantank/cron-expression/issues",
+ "source": "https://github.com/dragonmantank/cron-expression/tree/v3.6.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/dragonmantank",
+ "type": "github"
+ }
+ ],
+ "time": "2025-10-31T18:51:33+00:00"
+ },
+ {
+ "name": "egulias/email-validator",
+ "version": "4.0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/egulias/EmailValidator.git",
+ "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
+ "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/lexer": "^2.0 || ^3.0",
+ "php": ">=8.1",
+ "symfony/polyfill-intl-idn": "^1.26"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^10.2",
+ "vimeo/psalm": "^5.12"
+ },
+ "suggest": {
+ "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Egulias\\EmailValidator\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Eduardo Gulias Davis"
+ }
+ ],
+ "description": "A library for validating emails against several RFCs",
+ "homepage": "https://github.com/egulias/EmailValidator",
+ "keywords": [
+ "email",
+ "emailvalidation",
+ "emailvalidator",
+ "validation",
+ "validator"
+ ],
+ "support": {
+ "issues": "https://github.com/egulias/EmailValidator/issues",
+ "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/egulias",
+ "type": "github"
+ }
+ ],
+ "time": "2025-03-06T22:45:56+00:00"
+ },
+ {
+ "name": "fruitcake/php-cors",
+ "version": "v1.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/fruitcake/php-cors.git",
+ "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379",
+ "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1",
+ "symfony/http-foundation": "^5.4|^6.4|^7.3|^8"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^2",
+ "phpunit/phpunit": "^9",
+ "squizlabs/php_codesniffer": "^4"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.3-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Fruitcake\\Cors\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fruitcake",
+ "homepage": "https://fruitcake.nl"
+ },
+ {
+ "name": "Barryvdh",
+ "email": "barryvdh@gmail.com"
+ }
+ ],
+ "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
+ "homepage": "https://github.com/fruitcake/php-cors",
+ "keywords": [
+ "cors",
+ "laravel",
+ "symfony"
+ ],
+ "support": {
+ "issues": "https://github.com/fruitcake/php-cors/issues",
+ "source": "https://github.com/fruitcake/php-cors/tree/v1.4.0"
+ },
+ "funding": [
+ {
+ "url": "https://fruitcake.nl",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/barryvdh",
+ "type": "github"
+ }
+ ],
+ "time": "2025-12-03T09:33:47+00:00"
+ },
+ {
+ "name": "graham-campbell/result-type",
+ "version": "v1.1.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/GrahamCampbell/Result-Type.git",
+ "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
+ "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0",
+ "phpoption/phpoption": "^1.9.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "GrahamCampbell\\ResultType\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ }
+ ],
+ "description": "An Implementation Of The Result Type",
+ "keywords": [
+ "Graham Campbell",
+ "GrahamCampbell",
+ "Result Type",
+ "Result-Type",
+ "result"
+ ],
+ "support": {
+ "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
+ "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-12-27T19:43:20+00:00"
+ },
+ {
+ "name": "guzzlehttp/guzzle",
+ "version": "7.10.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/guzzle/guzzle.git",
+ "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
+ "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "guzzlehttp/promises": "^2.3",
+ "guzzlehttp/psr7": "^2.8",
+ "php": "^7.2.5 || ^8.0",
+ "psr/http-client": "^1.0",
+ "symfony/deprecation-contracts": "^2.2 || ^3.0"
+ },
+ "provide": {
+ "psr/http-client-implementation": "1.0"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "ext-curl": "*",
+ "guzzle/client-integration-tests": "3.0.2",
+ "php-http/message-factory": "^1.1",
+ "phpunit/phpunit": "^8.5.39 || ^9.6.20",
+ "psr/log": "^1.1 || ^2.0 || ^3.0"
+ },
+ "suggest": {
+ "ext-curl": "Required for CURL handler support",
+ "ext-intl": "Required for Internationalized Domain Name (IDN) support",
+ "psr/log": "Required for using the Log middleware"
+ },
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions_include.php"
+ ],
+ "psr-4": {
+ "GuzzleHttp\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
+ {
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
+ },
+ {
+ "name": "Jeremy Lindblom",
+ "email": "jeremeamia@gmail.com",
+ "homepage": "https://github.com/jeremeamia"
+ },
+ {
+ "name": "George Mponos",
+ "email": "gmponos@gmail.com",
+ "homepage": "https://github.com/gmponos"
+ },
+ {
+ "name": "Tobias Nyholm",
+ "email": "tobias.nyholm@gmail.com",
+ "homepage": "https://github.com/Nyholm"
+ },
+ {
+ "name": "Márk Sági-Kazár",
+ "email": "mark.sagikazar@gmail.com",
+ "homepage": "https://github.com/sagikazarmark"
+ },
+ {
+ "name": "Tobias Schultze",
+ "email": "webmaster@tubo-world.de",
+ "homepage": "https://github.com/Tobion"
+ }
+ ],
+ "description": "Guzzle is a PHP HTTP client library",
+ "keywords": [
+ "client",
+ "curl",
+ "framework",
+ "http",
+ "http client",
+ "psr-18",
+ "psr-7",
+ "rest",
+ "web service"
+ ],
+ "support": {
+ "issues": "https://github.com/guzzle/guzzle/issues",
+ "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/Nyholm",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-08-23T22:36:01+00:00"
+ },
+ {
+ "name": "guzzlehttp/promises",
+ "version": "2.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/guzzle/promises.git",
+ "reference": "481557b130ef3790cf82b713667b43030dc9c957"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
+ "reference": "481557b130ef3790cf82b713667b43030dc9c957",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "phpunit/phpunit": "^8.5.44 || ^9.6.25"
+ },
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "GuzzleHttp\\Promise\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
+ {
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
+ },
+ {
+ "name": "Tobias Nyholm",
+ "email": "tobias.nyholm@gmail.com",
+ "homepage": "https://github.com/Nyholm"
+ },
+ {
+ "name": "Tobias Schultze",
+ "email": "webmaster@tubo-world.de",
+ "homepage": "https://github.com/Tobion"
+ }
+ ],
+ "description": "Guzzle promises library",
+ "keywords": [
+ "promise"
+ ],
+ "support": {
+ "issues": "https://github.com/guzzle/promises/issues",
+ "source": "https://github.com/guzzle/promises/tree/2.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/Nyholm",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-08-22T14:34:08+00:00"
+ },
+ {
+ "name": "guzzlehttp/psr7",
+ "version": "2.9.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/guzzle/psr7.git",
+ "reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/7d0ed42f28e42d61352a7a79de682e5e67fec884",
+ "reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0",
+ "psr/http-factory": "^1.0",
+ "psr/http-message": "^1.1 || ^2.0",
+ "ralouphie/getallheaders": "^3.0"
+ },
+ "provide": {
+ "psr/http-factory-implementation": "1.0",
+ "psr/http-message-implementation": "1.0"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "http-interop/http-factory-tests": "0.9.0",
+ "jshttp/mime-db": "1.54.0.1",
+ "phpunit/phpunit": "^8.5.44 || ^9.6.25"
+ },
+ "suggest": {
+ "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
+ },
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "GuzzleHttp\\Psr7\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
+ {
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
+ },
+ {
+ "name": "George Mponos",
+ "email": "gmponos@gmail.com",
+ "homepage": "https://github.com/gmponos"
+ },
+ {
+ "name": "Tobias Nyholm",
+ "email": "tobias.nyholm@gmail.com",
+ "homepage": "https://github.com/Nyholm"
+ },
+ {
+ "name": "Márk Sági-Kazár",
+ "email": "mark.sagikazar@gmail.com",
+ "homepage": "https://github.com/sagikazarmark"
+ },
+ {
+ "name": "Tobias Schultze",
+ "email": "webmaster@tubo-world.de",
+ "homepage": "https://github.com/Tobion"
+ },
+ {
+ "name": "Márk Sági-Kazár",
+ "email": "mark.sagikazar@gmail.com",
+ "homepage": "https://sagikazarmark.hu"
+ }
+ ],
+ "description": "PSR-7 message implementation that also provides common utility methods",
+ "keywords": [
+ "http",
+ "message",
+ "psr-7",
+ "request",
+ "response",
+ "stream",
+ "uri",
+ "url"
+ ],
+ "support": {
+ "issues": "https://github.com/guzzle/psr7/issues",
+ "source": "https://github.com/guzzle/psr7/tree/2.9.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/Nyholm",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-03-10T16:41:02+00:00"
+ },
+ {
+ "name": "guzzlehttp/uri-template",
+ "version": "v1.0.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/guzzle/uri-template.git",
+ "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1",
+ "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0",
+ "symfony/polyfill-php80": "^1.24"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "phpunit/phpunit": "^8.5.44 || ^9.6.25",
+ "uri-template/tests": "1.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "GuzzleHttp\\UriTemplate\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
+ {
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
+ },
+ {
+ "name": "George Mponos",
+ "email": "gmponos@gmail.com",
+ "homepage": "https://github.com/gmponos"
+ },
+ {
+ "name": "Tobias Nyholm",
+ "email": "tobias.nyholm@gmail.com",
+ "homepage": "https://github.com/Nyholm"
+ }
+ ],
+ "description": "A polyfill class for uri_template of PHP",
+ "keywords": [
+ "guzzlehttp",
+ "uri-template"
+ ],
+ "support": {
+ "issues": "https://github.com/guzzle/uri-template/issues",
+ "source": "https://github.com/guzzle/uri-template/tree/v1.0.5"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/Nyholm",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-08-22T14:27:06+00:00"
+ },
+ {
+ "name": "laravel/framework",
+ "version": "v13.9.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/framework.git",
+ "reference": "a0c6ad03b380287015287d8d5a0fa2459e2332fd"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/a0c6ad03b380287015287d8d5a0fa2459e2332fd",
+ "reference": "a0c6ad03b380287015287d8d5a0fa2459e2332fd",
+ "shasum": ""
+ },
+ "require": {
+ "brick/math": "^0.14.2 || ^0.15 || ^0.16 || ^0.17",
+ "composer-runtime-api": "^2.2",
+ "doctrine/inflector": "^2.0.5",
+ "dragonmantank/cron-expression": "^3.4",
+ "egulias/email-validator": "^4.0",
+ "ext-ctype": "*",
+ "ext-filter": "*",
+ "ext-hash": "*",
+ "ext-mbstring": "*",
+ "ext-openssl": "*",
+ "ext-session": "*",
+ "ext-tokenizer": "*",
+ "fruitcake/php-cors": "^1.3",
+ "guzzlehttp/guzzle": "^7.8.2",
+ "guzzlehttp/promises": "^2.0.3",
+ "guzzlehttp/uri-template": "^1.0",
+ "laravel/prompts": "^0.3.0",
+ "laravel/serializable-closure": "^2.0.10",
+ "league/commonmark": "^2.8.1",
+ "league/flysystem": "^3.25.1",
+ "league/flysystem-local": "^3.25.1",
+ "league/uri": "^7.5.1",
+ "monolog/monolog": "^3.0",
+ "nesbot/carbon": "^3.8.4",
+ "nunomaduro/termwind": "^2.0",
+ "php": "^8.3",
+ "psr/container": "^1.1.1 || ^2.0.1",
+ "psr/log": "^1.0 || ^2.0 || ^3.0",
+ "psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
+ "ramsey/uuid": "^4.7",
+ "symfony/console": "^7.4.0 || ^8.0.0",
+ "symfony/error-handler": "^7.4.0 || ^8.0.0",
+ "symfony/finder": "^7.4.0 || ^8.0.0",
+ "symfony/http-foundation": "^7.4.0 || ^8.0.0",
+ "symfony/http-kernel": "^7.4.0 || ^8.0.0",
+ "symfony/mailer": "^7.4.0 || ^8.0.0",
+ "symfony/mime": "^7.4.0 || ^8.0.0",
+ "symfony/polyfill-php84": "^1.36",
+ "symfony/polyfill-php85": "^1.36",
+ "symfony/polyfill-php86": "^1.36",
+ "symfony/process": "^7.4.5 || ^8.0.5",
+ "symfony/routing": "^7.4.0 || ^8.0.0",
+ "symfony/uid": "^7.4.0 || ^8.0.0",
+ "symfony/var-dumper": "^7.4.0 || ^8.0.0",
+ "tijsverkoyen/css-to-inline-styles": "^2.2.5",
+ "vlucas/phpdotenv": "^5.6.1",
+ "voku/portable-ascii": "^2.0.2"
+ },
+ "conflict": {
+ "tightenco/collect": "<5.5.33"
+ },
+ "provide": {
+ "psr/container-implementation": "1.1 || 2.0",
+ "psr/log-implementation": "1.0 || 2.0 || 3.0",
+ "psr/simple-cache-implementation": "1.0 || 2.0 || 3.0"
+ },
+ "replace": {
+ "illuminate/auth": "self.version",
+ "illuminate/broadcasting": "self.version",
+ "illuminate/bus": "self.version",
+ "illuminate/cache": "self.version",
+ "illuminate/collections": "self.version",
+ "illuminate/concurrency": "self.version",
+ "illuminate/conditionable": "self.version",
+ "illuminate/config": "self.version",
+ "illuminate/console": "self.version",
+ "illuminate/container": "self.version",
+ "illuminate/contracts": "self.version",
+ "illuminate/cookie": "self.version",
+ "illuminate/database": "self.version",
+ "illuminate/encryption": "self.version",
+ "illuminate/events": "self.version",
+ "illuminate/filesystem": "self.version",
+ "illuminate/hashing": "self.version",
+ "illuminate/http": "self.version",
+ "illuminate/json-schema": "self.version",
+ "illuminate/log": "self.version",
+ "illuminate/macroable": "self.version",
+ "illuminate/mail": "self.version",
+ "illuminate/notifications": "self.version",
+ "illuminate/pagination": "self.version",
+ "illuminate/pipeline": "self.version",
+ "illuminate/process": "self.version",
+ "illuminate/queue": "self.version",
+ "illuminate/redis": "self.version",
+ "illuminate/reflection": "self.version",
+ "illuminate/routing": "self.version",
+ "illuminate/session": "self.version",
+ "illuminate/support": "self.version",
+ "illuminate/testing": "self.version",
+ "illuminate/translation": "self.version",
+ "illuminate/validation": "self.version",
+ "illuminate/view": "self.version",
+ "spatie/once": "*"
+ },
+ "require-dev": {
+ "ably/ably-php": "^1.0",
+ "aws/aws-sdk-php": "^3.322.9",
+ "ext-gmp": "*",
+ "fakerphp/faker": "^1.24",
+ "guzzlehttp/psr7": "^2.9",
+ "laravel/pint": "^1.18",
+ "league/flysystem-aws-s3-v3": "^3.25.1",
+ "league/flysystem-ftp": "^3.25.1",
+ "league/flysystem-path-prefixing": "^3.25.1",
+ "league/flysystem-read-only": "^3.25.1",
+ "league/flysystem-sftp-v3": "^3.25.1",
+ "mockery/mockery": "^1.6.10",
+ "opis/json-schema": "^2.4.1",
+ "orchestra/testbench-core": "^11.0.0",
+ "pda/pheanstalk": "^7.0.0 || ^8.0.0",
+ "php-http/discovery": "^1.15",
+ "phpstan/phpstan": "^2.0",
+ "phpunit/phpunit": "^11.5.50 || ^12.5.8 || ^13.0.3",
+ "predis/predis": "^2.3 || ^3.0",
+ "rector/rector": "^2.3",
+ "resend/resend-php": "^1.0",
+ "symfony/cache": "^7.4.0 || ^8.0.0",
+ "symfony/http-client": "^7.4.0 || ^8.0.0",
+ "symfony/psr-http-message-bridge": "^7.4.0 || ^8.0.0",
+ "symfony/translation": "^7.4.0 || ^8.0.0"
+ },
+ "suggest": {
+ "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
+ "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
+ "brianium/paratest": "Required to run tests in parallel (^7.0 || ^8.0).",
+ "ext-apcu": "Required to use the APC cache driver.",
+ "ext-fileinfo": "Required to use the Filesystem class.",
+ "ext-ftp": "Required to use the Flysystem FTP driver.",
+ "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
+ "ext-memcached": "Required to use the memcache cache driver.",
+ "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
+ "ext-pdo": "Required to use all database features.",
+ "ext-posix": "Required to use all features of the queue worker.",
+ "ext-redis": "Required to use the Redis cache and queue drivers (^4.0 || ^5.0 || ^6.0).",
+ "fakerphp/faker": "Required to generate fake data using the fake() helper (^1.23).",
+ "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
+ "laravel/tinker": "Required to use the tinker console command (^2.0).",
+ "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
+ "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
+ "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
+ "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
+ "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
+ "mockery/mockery": "Required to use mocking (^1.6).",
+ "pda/pheanstalk": "Required to use the beanstalk queue driver (^7.0 || ^8.0).",
+ "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
+ "phpunit/phpunit": "Required to use assertions and run tests (^11.5.50 || ^12.5.8 || ^13.0.3).",
+ "predis/predis": "Required to use the predis connector (^2.3 || ^3.0).",
+ "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
+ "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0 || ^7.0).",
+ "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0 || ^1.0).",
+ "spatie/fork": "Required to use the 'fork' concurrency driver (^1.2).",
+ "symfony/cache": "Required to PSR-6 cache bridge (^7.4 || ^8.0).",
+ "symfony/filesystem": "Required to enable support for relative symbolic links (^7.4 || ^8.0).",
+ "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.4 || ^8.0).",
+ "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.4 || ^8.0).",
+ "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.4 || ^8.0).",
+ "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.4 || ^8.0)."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "13.0.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Illuminate/Collections/functions.php",
+ "src/Illuminate/Collections/helpers.php",
+ "src/Illuminate/Events/functions.php",
+ "src/Illuminate/Filesystem/functions.php",
+ "src/Illuminate/Foundation/helpers.php",
+ "src/Illuminate/Log/functions.php",
+ "src/Illuminate/Reflection/helpers.php",
+ "src/Illuminate/Support/functions.php",
+ "src/Illuminate/Support/helpers.php"
+ ],
+ "psr-4": {
+ "Illuminate\\": "src/Illuminate/",
+ "Illuminate\\Support\\": [
+ "src/Illuminate/Macroable/",
+ "src/Illuminate/Collections/",
+ "src/Illuminate/Conditionable/",
+ "src/Illuminate/Reflection/"
+ ]
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ }
+ ],
+ "description": "The Laravel Framework.",
+ "homepage": "https://laravel.com",
+ "keywords": [
+ "framework",
+ "laravel"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/framework/issues",
+ "source": "https://github.com/laravel/framework"
+ },
+ "time": "2026-05-13T15:38:40+00:00"
+ },
+ {
+ "name": "laravel/prompts",
+ "version": "v0.3.17",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/prompts.git",
+ "reference": "6a82ac19a28b916ae0885828795dbd4c59d9a818"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/prompts/zipball/6a82ac19a28b916ae0885828795dbd4c59d9a818",
+ "reference": "6a82ac19a28b916ae0885828795dbd4c59d9a818",
+ "shasum": ""
+ },
+ "require": {
+ "composer-runtime-api": "^2.2",
+ "ext-mbstring": "*",
+ "php": "^8.1",
+ "symfony/console": "^6.2|^7.0|^8.0"
+ },
+ "conflict": {
+ "illuminate/console": ">=10.17.0 <10.25.0",
+ "laravel/framework": ">=10.17.0 <10.25.0"
+ },
+ "require-dev": {
+ "illuminate/collections": "^10.0|^11.0|^12.0|^13.0",
+ "mockery/mockery": "^1.5",
+ "pestphp/pest": "^2.3|^3.4|^4.0",
+ "phpstan/phpstan": "^1.12.28",
+ "phpstan/phpstan-mockery": "^1.1.3"
+ },
+ "suggest": {
+ "ext-pcntl": "Required for the spinner to be animated."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "0.3.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/helpers.php"
+ ],
+ "psr-4": {
+ "Laravel\\Prompts\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Add beautiful and user-friendly forms to your command-line applications.",
+ "support": {
+ "issues": "https://github.com/laravel/prompts/issues",
+ "source": "https://github.com/laravel/prompts/tree/v0.3.17"
+ },
+ "time": "2026-04-20T16:07:33+00:00"
+ },
+ {
+ "name": "laravel/serializable-closure",
+ "version": "v2.0.13",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/serializable-closure.git",
+ "reference": "b566ee0dd251f3c4078bed003a7ce015f5ea6dce"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/b566ee0dd251f3c4078bed003a7ce015f5ea6dce",
+ "reference": "b566ee0dd251f3c4078bed003a7ce015f5ea6dce",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "illuminate/support": "^10.0|^11.0|^12.0|^13.0",
+ "nesbot/carbon": "^2.67|^3.0",
+ "pestphp/pest": "^2.36|^3.0|^4.0",
+ "phpstan/phpstan": "^2.0",
+ "symfony/var-dumper": "^6.2.0|^7.0.0|^8.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Laravel\\SerializableClosure\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ },
+ {
+ "name": "Nuno Maduro",
+ "email": "nuno@laravel.com"
+ }
+ ],
+ "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
+ "keywords": [
+ "closure",
+ "laravel",
+ "serializable"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/serializable-closure/issues",
+ "source": "https://github.com/laravel/serializable-closure"
+ },
+ "time": "2026-04-16T14:03:50+00:00"
+ },
+ {
+ "name": "laravel/tinker",
+ "version": "v3.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/tinker.git",
+ "reference": "4faba77764bd33411735936acdf30446d058c78b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/tinker/zipball/4faba77764bd33411735936acdf30446d058c78b",
+ "reference": "4faba77764bd33411735936acdf30446d058c78b",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/console": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0",
+ "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0",
+ "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0",
+ "php": "^8.1",
+ "psy/psysh": "^0.12.0",
+ "symfony/var-dumper": "^5.4|^6.0|^7.0|^8.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "~1.3.3|^1.4.2",
+ "phpstan/phpstan": "^1.10",
+ "phpunit/phpunit": "^10.5|^11.5"
+ },
+ "suggest": {
+ "illuminate/database": "The Illuminate Database package (^8.0|^9.0|^10.0|^11.0|^12.0|^13.0)."
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Laravel\\Tinker\\TinkerServiceProvider"
+ ]
+ },
+ "branch-alias": {
+ "dev-master": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Laravel\\Tinker\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ }
+ ],
+ "description": "Powerful REPL for the Laravel framework.",
+ "keywords": [
+ "REPL",
+ "Tinker",
+ "laravel",
+ "psysh"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/tinker/issues",
+ "source": "https://github.com/laravel/tinker/tree/v3.0.2"
+ },
+ "time": "2026-03-17T14:54:13+00:00"
+ },
+ {
+ "name": "league/commonmark",
+ "version": "2.8.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/commonmark.git",
+ "reference": "59fb075d2101740c337c7216e3f32b36c204218b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/59fb075d2101740c337c7216e3f32b36c204218b",
+ "reference": "59fb075d2101740c337c7216e3f32b36c204218b",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "league/config": "^1.1.1",
+ "php": "^7.4 || ^8.0",
+ "psr/event-dispatcher": "^1.0",
+ "symfony/deprecation-contracts": "^2.1 || ^3.0",
+ "symfony/polyfill-php80": "^1.16"
+ },
+ "require-dev": {
+ "cebe/markdown": "^1.0",
+ "commonmark/cmark": "0.31.1",
+ "commonmark/commonmark.js": "0.31.1",
+ "composer/package-versions-deprecated": "^1.8",
+ "embed/embed": "^4.4",
+ "erusev/parsedown": "^1.0",
+ "ext-json": "*",
+ "github/gfm": "0.29.0",
+ "michelf/php-markdown": "^1.4 || ^2.0",
+ "nyholm/psr7": "^1.5",
+ "phpstan/phpstan": "^1.8.2",
+ "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
+ "scrutinizer/ocular": "^1.8.1",
+ "symfony/finder": "^5.3 | ^6.0 | ^7.0 || ^8.0",
+ "symfony/process": "^5.4 | ^6.0 | ^7.0 || ^8.0",
+ "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0 || ^8.0",
+ "unleashedtech/php-coding-standard": "^3.1.1",
+ "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0"
+ },
+ "suggest": {
+ "symfony/yaml": "v2.3+ required if using the Front Matter extension"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "2.9-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "League\\CommonMark\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Colin O'Dell",
+ "email": "colinodell@gmail.com",
+ "homepage": "https://www.colinodell.com",
+ "role": "Lead Developer"
+ }
+ ],
+ "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
+ "homepage": "https://commonmark.thephpleague.com",
+ "keywords": [
+ "commonmark",
+ "flavored",
+ "gfm",
+ "github",
+ "github-flavored",
+ "markdown",
+ "md",
+ "parser"
+ ],
+ "support": {
+ "docs": "https://commonmark.thephpleague.com/",
+ "forum": "https://github.com/thephpleague/commonmark/discussions",
+ "issues": "https://github.com/thephpleague/commonmark/issues",
+ "rss": "https://github.com/thephpleague/commonmark/releases.atom",
+ "source": "https://github.com/thephpleague/commonmark"
+ },
+ "funding": [
+ {
+ "url": "https://www.colinodell.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.paypal.me/colinpodell/10.00",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/colinodell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-03-19T13:16:38+00:00"
+ },
+ {
+ "name": "league/config",
+ "version": "v1.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/config.git",
+ "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
+ "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
+ "shasum": ""
+ },
+ "require": {
+ "dflydev/dot-access-data": "^3.0.1",
+ "nette/schema": "^1.2",
+ "php": "^7.4 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.8.2",
+ "phpunit/phpunit": "^9.5.5",
+ "scrutinizer/ocular": "^1.8.1",
+ "unleashedtech/php-coding-standard": "^3.1",
+ "vimeo/psalm": "^4.7.3"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.2-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "League\\Config\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Colin O'Dell",
+ "email": "colinodell@gmail.com",
+ "homepage": "https://www.colinodell.com",
+ "role": "Lead Developer"
+ }
+ ],
+ "description": "Define configuration arrays with strict schemas and access values with dot notation",
+ "homepage": "https://config.thephpleague.com",
+ "keywords": [
+ "array",
+ "config",
+ "configuration",
+ "dot",
+ "dot-access",
+ "nested",
+ "schema"
+ ],
+ "support": {
+ "docs": "https://config.thephpleague.com/",
+ "issues": "https://github.com/thephpleague/config/issues",
+ "rss": "https://github.com/thephpleague/config/releases.atom",
+ "source": "https://github.com/thephpleague/config"
+ },
+ "funding": [
+ {
+ "url": "https://www.colinodell.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.paypal.me/colinpodell/10.00",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/colinodell",
+ "type": "github"
+ }
+ ],
+ "time": "2022-12-11T20:36:23+00:00"
+ },
+ {
+ "name": "league/flysystem",
+ "version": "3.34.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/flysystem.git",
+ "reference": "2daaac3b0d4c83ea7ed5d8586e786f5d00f3540e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2daaac3b0d4c83ea7ed5d8586e786f5d00f3540e",
+ "reference": "2daaac3b0d4c83ea7ed5d8586e786f5d00f3540e",
+ "shasum": ""
+ },
+ "require": {
+ "league/flysystem-local": "^3.0.0",
+ "league/mime-type-detection": "^1.0.0",
+ "php": "^8.0.2"
+ },
+ "conflict": {
+ "async-aws/core": "<1.19.0",
+ "async-aws/s3": "<1.14.0",
+ "aws/aws-sdk-php": "3.209.31 || 3.210.0",
+ "guzzlehttp/guzzle": "<7.0",
+ "guzzlehttp/ringphp": "<1.1.1",
+ "phpseclib/phpseclib": "3.0.15",
+ "symfony/http-client": "<5.2"
+ },
+ "require-dev": {
+ "async-aws/s3": "^1.5 || ^2.0",
+ "async-aws/simple-s3": "^1.1 || ^2.0",
+ "aws/aws-sdk-php": "^3.295.10",
+ "composer/semver": "^3.0",
+ "ext-fileinfo": "*",
+ "ext-ftp": "*",
+ "ext-mongodb": "^1.3|^2",
+ "ext-zip": "*",
+ "friendsofphp/php-cs-fixer": "^3.5",
+ "google/cloud-storage": "^1.23",
+ "guzzlehttp/psr7": "^2.6",
+ "microsoft/azure-storage-blob": "^1.1",
+ "mongodb/mongodb": "^1.2|^2",
+ "phpseclib/phpseclib": "^3.0.36",
+ "phpstan/phpstan": "^1.10",
+ "phpunit/phpunit": "^9.5.11|^10.0",
+ "sabre/dav": "^4.6.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "League\\Flysystem\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Frank de Jonge",
+ "email": "info@frankdejonge.nl"
+ }
+ ],
+ "description": "File storage abstraction for PHP",
+ "keywords": [
+ "WebDAV",
+ "aws",
+ "cloud",
+ "file",
+ "files",
+ "filesystem",
+ "filesystems",
+ "ftp",
+ "s3",
+ "sftp",
+ "storage"
+ ],
+ "support": {
+ "issues": "https://github.com/thephpleague/flysystem/issues",
+ "source": "https://github.com/thephpleague/flysystem/tree/3.34.0"
+ },
+ "time": "2026-05-14T10:28:08+00:00"
+ },
+ {
+ "name": "league/flysystem-local",
+ "version": "3.31.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/flysystem-local.git",
+ "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/2f669db18a4c20c755c2bb7d3a7b0b2340488079",
+ "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079",
+ "shasum": ""
+ },
+ "require": {
+ "ext-fileinfo": "*",
+ "league/flysystem": "^3.0.0",
+ "league/mime-type-detection": "^1.0.0",
+ "php": "^8.0.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "League\\Flysystem\\Local\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Frank de Jonge",
+ "email": "info@frankdejonge.nl"
+ }
+ ],
+ "description": "Local filesystem adapter for Flysystem.",
+ "keywords": [
+ "Flysystem",
+ "file",
+ "files",
+ "filesystem",
+ "local"
+ ],
+ "support": {
+ "source": "https://github.com/thephpleague/flysystem-local/tree/3.31.0"
+ },
+ "time": "2026-01-23T15:30:45+00:00"
+ },
+ {
+ "name": "league/mime-type-detection",
+ "version": "1.16.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/mime-type-detection.git",
+ "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
+ "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
+ "shasum": ""
+ },
+ "require": {
+ "ext-fileinfo": "*",
+ "php": "^7.4 || ^8.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.2",
+ "phpstan/phpstan": "^0.12.68",
+ "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "League\\MimeTypeDetection\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Frank de Jonge",
+ "email": "info@frankdejonge.nl"
+ }
+ ],
+ "description": "Mime-type detection for Flysystem",
+ "support": {
+ "issues": "https://github.com/thephpleague/mime-type-detection/issues",
+ "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/frankdejonge",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-21T08:32:55+00:00"
+ },
+ {
+ "name": "league/uri",
+ "version": "7.8.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/uri.git",
+ "reference": "08cf38e3924d4f56238125547b5720496fac8fd4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/uri/zipball/08cf38e3924d4f56238125547b5720496fac8fd4",
+ "reference": "08cf38e3924d4f56238125547b5720496fac8fd4",
+ "shasum": ""
+ },
+ "require": {
+ "league/uri-interfaces": "^7.8.1",
+ "php": "^8.1",
+ "psr/http-factory": "^1"
+ },
+ "conflict": {
+ "league/uri-schemes": "^1.0"
+ },
+ "suggest": {
+ "ext-bcmath": "to improve IPV4 host parsing",
+ "ext-dom": "to convert the URI into an HTML anchor tag",
+ "ext-fileinfo": "to create Data URI from file contennts",
+ "ext-gmp": "to improve IPV4 host parsing",
+ "ext-intl": "to handle IDN host with the best performance",
+ "ext-uri": "to use the PHP native URI class",
+ "jeremykendall/php-domain-parser": "to further parse the URI host and resolve its Public Suffix and Top Level Domain",
+ "league/uri-components": "to provide additional tools to manipulate URI objects components",
+ "league/uri-polyfill": "to backport the PHP URI extension for older versions of PHP",
+ "php-64bit": "to improve IPV4 host parsing",
+ "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification",
+ "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "7.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "League\\Uri\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ignace Nyamagana Butera",
+ "email": "nyamsprod@gmail.com",
+ "homepage": "https://nyamsprod.com"
+ }
+ ],
+ "description": "URI manipulation library",
+ "homepage": "https://uri.thephpleague.com",
+ "keywords": [
+ "URN",
+ "data-uri",
+ "file-uri",
+ "ftp",
+ "hostname",
+ "http",
+ "https",
+ "middleware",
+ "parse_str",
+ "parse_url",
+ "psr-7",
+ "query-string",
+ "querystring",
+ "rfc2141",
+ "rfc3986",
+ "rfc3987",
+ "rfc6570",
+ "rfc8141",
+ "uri",
+ "uri-template",
+ "url",
+ "ws"
+ ],
+ "support": {
+ "docs": "https://uri.thephpleague.com",
+ "forum": "https://thephpleague.slack.com",
+ "issues": "https://github.com/thephpleague/uri-src/issues",
+ "source": "https://github.com/thephpleague/uri/tree/7.8.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/nyamsprod",
+ "type": "github"
+ }
+ ],
+ "time": "2026-03-15T20:22:25+00:00"
+ },
+ {
+ "name": "league/uri-interfaces",
+ "version": "7.8.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/uri-interfaces.git",
+ "reference": "85d5c77c5d6d3af6c54db4a78246364908f3c928"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/85d5c77c5d6d3af6c54db4a78246364908f3c928",
+ "reference": "85d5c77c5d6d3af6c54db4a78246364908f3c928",
+ "shasum": ""
+ },
+ "require": {
+ "ext-filter": "*",
+ "php": "^8.1",
+ "psr/http-message": "^1.1 || ^2.0"
+ },
+ "suggest": {
+ "ext-bcmath": "to improve IPV4 host parsing",
+ "ext-gmp": "to improve IPV4 host parsing",
+ "ext-intl": "to handle IDN host with the best performance",
+ "php-64bit": "to improve IPV4 host parsing",
+ "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification",
+ "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "7.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "League\\Uri\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ignace Nyamagana Butera",
+ "email": "nyamsprod@gmail.com",
+ "homepage": "https://nyamsprod.com"
+ }
+ ],
+ "description": "Common tools for parsing and resolving RFC3987/RFC3986 URI",
+ "homepage": "https://uri.thephpleague.com",
+ "keywords": [
+ "data-uri",
+ "file-uri",
+ "ftp",
+ "hostname",
+ "http",
+ "https",
+ "parse_str",
+ "parse_url",
+ "psr-7",
+ "query-string",
+ "querystring",
+ "rfc3986",
+ "rfc3987",
+ "rfc6570",
+ "uri",
+ "url",
+ "ws"
+ ],
+ "support": {
+ "docs": "https://uri.thephpleague.com",
+ "forum": "https://thephpleague.slack.com",
+ "issues": "https://github.com/thephpleague/uri-src/issues",
+ "source": "https://github.com/thephpleague/uri-interfaces/tree/7.8.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/nyamsprod",
+ "type": "github"
+ }
+ ],
+ "time": "2026-03-08T20:05:35+00:00"
+ },
+ {
+ "name": "monolog/monolog",
+ "version": "3.10.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Seldaek/monolog.git",
+ "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0",
+ "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "psr/log": "^2.0 || ^3.0"
+ },
+ "provide": {
+ "psr/log-implementation": "3.0.0"
+ },
+ "require-dev": {
+ "aws/aws-sdk-php": "^3.0",
+ "doctrine/couchdb": "~1.0@dev",
+ "elasticsearch/elasticsearch": "^7 || ^8",
+ "ext-json": "*",
+ "graylog2/gelf-php": "^1.4.2 || ^2.0",
+ "guzzlehttp/guzzle": "^7.4.5",
+ "guzzlehttp/psr7": "^2.2",
+ "mongodb/mongodb": "^1.8 || ^2.0",
+ "php-amqplib/php-amqplib": "~2.4 || ^3",
+ "php-console/php-console": "^3.1.8",
+ "phpstan/phpstan": "^2",
+ "phpstan/phpstan-deprecation-rules": "^2",
+ "phpstan/phpstan-strict-rules": "^2",
+ "phpunit/phpunit": "^10.5.17 || ^11.0.7",
+ "predis/predis": "^1.1 || ^2",
+ "rollbar/rollbar": "^4.0",
+ "ruflin/elastica": "^7 || ^8",
+ "symfony/mailer": "^5.4 || ^6",
+ "symfony/mime": "^5.4 || ^6"
+ },
+ "suggest": {
+ "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
+ "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
+ "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
+ "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
+ "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
+ "ext-mbstring": "Allow to work properly with unicode symbols",
+ "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
+ "ext-openssl": "Required to send log messages using SSL",
+ "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
+ "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
+ "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
+ "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
+ "rollbar/rollbar": "Allow sending log messages to Rollbar",
+ "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Monolog\\": "src/Monolog"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "https://seld.be"
+ }
+ ],
+ "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
+ "homepage": "https://github.com/Seldaek/monolog",
+ "keywords": [
+ "log",
+ "logging",
+ "psr-3"
+ ],
+ "support": {
+ "issues": "https://github.com/Seldaek/monolog/issues",
+ "source": "https://github.com/Seldaek/monolog/tree/3.10.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/Seldaek",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-01-02T08:56:05+00:00"
+ },
+ {
+ "name": "nesbot/carbon",
+ "version": "3.11.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/CarbonPHP/carbon.git",
+ "reference": "e890471a3494740f7d9326d72ce6a8c559ffee60"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/e890471a3494740f7d9326d72ce6a8c559ffee60",
+ "reference": "e890471a3494740f7d9326d72ce6a8c559ffee60",
+ "shasum": ""
+ },
+ "require": {
+ "carbonphp/carbon-doctrine-types": "<100.0",
+ "ext-json": "*",
+ "php": "^8.1",
+ "psr/clock": "^1.0",
+ "symfony/clock": "^6.3.12 || ^7.0 || ^8.0",
+ "symfony/polyfill-mbstring": "^1.0",
+ "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0 || ^8.0"
+ },
+ "provide": {
+ "psr/clock-implementation": "1.0"
+ },
+ "require-dev": {
+ "doctrine/dbal": "^3.6.3 || ^4.0",
+ "doctrine/orm": "^2.15.2 || ^3.0",
+ "friendsofphp/php-cs-fixer": "^v3.87.1",
+ "kylekatarnls/multi-tester": "^2.5.3",
+ "phpmd/phpmd": "^2.15.0",
+ "phpstan/extension-installer": "^1.4.3",
+ "phpstan/phpstan": "^2.1.22",
+ "phpunit/phpunit": "^10.5.53",
+ "squizlabs/php_codesniffer": "^3.13.4 || ^4.0.0"
+ },
+ "bin": [
+ "bin/carbon"
+ ],
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Carbon\\Laravel\\ServiceProvider"
+ ]
+ },
+ "phpstan": {
+ "includes": [
+ "extension.neon"
+ ]
+ },
+ "branch-alias": {
+ "dev-2.x": "2.x-dev",
+ "dev-master": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Carbon\\": "src/Carbon/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Brian Nesbitt",
+ "email": "brian@nesbot.com",
+ "homepage": "https://markido.com"
+ },
+ {
+ "name": "kylekatarnls",
+ "homepage": "https://github.com/kylekatarnls"
+ }
+ ],
+ "description": "An API extension for DateTime that supports 281 different languages.",
+ "homepage": "https://carbonphp.github.io/carbon/",
+ "keywords": [
+ "date",
+ "datetime",
+ "time"
+ ],
+ "support": {
+ "docs": "https://carbonphp.github.io/carbon/guide/getting-started/introduction.html",
+ "issues": "https://github.com/CarbonPHP/carbon/issues",
+ "source": "https://github.com/CarbonPHP/carbon"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/kylekatarnls",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/Carbon#sponsor",
+ "type": "opencollective"
+ },
+ {
+ "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-07T09:57:54+00:00"
+ },
+ {
+ "name": "nette/schema",
+ "version": "v1.3.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nette/schema.git",
+ "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nette/schema/zipball/f0ab1a3cda782dbc5da270d28545236aa80c4002",
+ "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002",
+ "shasum": ""
+ },
+ "require": {
+ "nette/utils": "^4.0",
+ "php": "8.1 - 8.5"
+ },
+ "require-dev": {
+ "nette/phpstan-rules": "^1.0",
+ "nette/tester": "^2.6",
+ "phpstan/extension-installer": "^1.4@stable",
+ "phpstan/phpstan": "^2.1.39@stable",
+ "tracy/tracy": "^2.8"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.3-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Nette\\": "src"
+ },
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause",
+ "GPL-2.0-only",
+ "GPL-3.0-only"
+ ],
+ "authors": [
+ {
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
+ }
+ ],
+ "description": "📐 Nette Schema: validating data structures against a given Schema.",
+ "homepage": "https://nette.org",
+ "keywords": [
+ "config",
+ "nette"
+ ],
+ "support": {
+ "issues": "https://github.com/nette/schema/issues",
+ "source": "https://github.com/nette/schema/tree/v1.3.5"
+ },
+ "time": "2026-02-23T03:47:12+00:00"
+ },
+ {
+ "name": "nette/utils",
+ "version": "v4.1.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nette/utils.git",
+ "reference": "7da6c396d7ebe142bc857c20479d5e70a5e1aac7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nette/utils/zipball/7da6c396d7ebe142bc857c20479d5e70a5e1aac7",
+ "reference": "7da6c396d7ebe142bc857c20479d5e70a5e1aac7",
+ "shasum": ""
+ },
+ "require": {
+ "php": "8.2 - 8.5"
+ },
+ "conflict": {
+ "nette/finder": "<3",
+ "nette/schema": "<1.2.2"
+ },
+ "require-dev": {
+ "jetbrains/phpstorm-attributes": "^1.2",
+ "nette/phpstan-rules": "^1.0",
+ "nette/tester": "^2.5",
+ "phpstan/extension-installer": "^1.4@stable",
+ "phpstan/phpstan": "^2.1@stable",
+ "tracy/tracy": "^2.9"
+ },
+ "suggest": {
+ "ext-gd": "to use Image",
+ "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
+ "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
+ "ext-json": "to use Nette\\Utils\\Json",
+ "ext-mbstring": "to use Strings::lower() etc...",
+ "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.1-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Nette\\": "src"
+ },
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause",
+ "GPL-2.0-only",
+ "GPL-3.0-only"
+ ],
+ "authors": [
+ {
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
+ }
+ ],
+ "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
+ "homepage": "https://nette.org",
+ "keywords": [
+ "array",
+ "core",
+ "datetime",
+ "images",
+ "json",
+ "nette",
+ "paginator",
+ "password",
+ "slugify",
+ "string",
+ "unicode",
+ "utf-8",
+ "utility",
+ "validation"
+ ],
+ "support": {
+ "issues": "https://github.com/nette/utils/issues",
+ "source": "https://github.com/nette/utils/tree/v4.1.4"
+ },
+ "time": "2026-05-11T20:49:54+00:00"
+ },
+ {
+ "name": "nikic/php-parser",
+ "version": "v5.7.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nikic/PHP-Parser.git",
+ "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
+ "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
+ "shasum": ""
+ },
+ "require": {
+ "ext-ctype": "*",
+ "ext-json": "*",
+ "ext-tokenizer": "*",
+ "php": ">=7.4"
+ },
+ "require-dev": {
+ "ircmaxell/php-yacc": "^0.0.7",
+ "phpunit/phpunit": "^9.0"
+ },
+ "bin": [
+ "bin/php-parse"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PhpParser\\": "lib/PhpParser"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Nikita Popov"
+ }
+ ],
+ "description": "A PHP parser written in PHP",
+ "keywords": [
+ "parser",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/nikic/PHP-Parser/issues",
+ "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
+ },
+ "time": "2025-12-06T11:56:16+00:00"
+ },
+ {
+ "name": "nunomaduro/termwind",
+ "version": "v2.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nunomaduro/termwind.git",
+ "reference": "712a31b768f5daea284c2169a7d227031001b9a8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/712a31b768f5daea284c2169a7d227031001b9a8",
+ "reference": "712a31b768f5daea284c2169a7d227031001b9a8",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "php": "^8.2",
+ "symfony/console": "^7.4.4 || ^8.0.4"
+ },
+ "require-dev": {
+ "illuminate/console": "^11.47.0",
+ "laravel/pint": "^1.27.1",
+ "mockery/mockery": "^1.6.12",
+ "pestphp/pest": "^2.36.0 || ^3.8.4 || ^4.3.2",
+ "phpstan/phpstan": "^1.12.32",
+ "phpstan/phpstan-strict-rules": "^1.6.2",
+ "symfony/var-dumper": "^7.3.5 || ^8.0.4",
+ "thecodingmachine/phpstan-strict-rules": "^1.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Termwind\\Laravel\\TermwindServiceProvider"
+ ]
+ },
+ "branch-alias": {
+ "dev-2.x": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Functions.php"
+ ],
+ "psr-4": {
+ "Termwind\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "It's like Tailwind CSS, but for the console.",
+ "keywords": [
+ "cli",
+ "console",
+ "css",
+ "package",
+ "php",
+ "style"
+ ],
+ "support": {
+ "issues": "https://github.com/nunomaduro/termwind/issues",
+ "source": "https://github.com/nunomaduro/termwind/tree/v2.4.0"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/paypalme/enunomaduro",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/nunomaduro",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/xiCO2k",
+ "type": "github"
+ }
+ ],
+ "time": "2026-02-16T23:10:27+00:00"
+ },
+ {
+ "name": "paragonie/constant_time_encoding",
+ "version": "v3.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/paragonie/constant_time_encoding.git",
+ "reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77",
+ "reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8"
+ },
+ "require-dev": {
+ "infection/infection": "^0",
+ "nikic/php-fuzzer": "^0",
+ "phpunit/phpunit": "^9|^10|^11",
+ "vimeo/psalm": "^4|^5|^6"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "ParagonIE\\ConstantTime\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Paragon Initiative Enterprises",
+ "email": "security@paragonie.com",
+ "homepage": "https://paragonie.com",
+ "role": "Maintainer"
+ },
+ {
+ "name": "Steve 'Sc00bz' Thomas",
+ "email": "steve@tobtu.com",
+ "homepage": "https://www.tobtu.com",
+ "role": "Original Developer"
+ }
+ ],
+ "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
+ "keywords": [
+ "base16",
+ "base32",
+ "base32_decode",
+ "base32_encode",
+ "base64",
+ "base64_decode",
+ "base64_encode",
+ "bin2hex",
+ "encoding",
+ "hex",
+ "hex2bin",
+ "rfc4648"
+ ],
+ "support": {
+ "email": "info@paragonie.com",
+ "issues": "https://github.com/paragonie/constant_time_encoding/issues",
+ "source": "https://github.com/paragonie/constant_time_encoding"
+ },
+ "time": "2025-09-24T15:06:41+00:00"
+ },
+ {
+ "name": "phpoption/phpoption",
+ "version": "1.9.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/schmittjoh/php-option.git",
+ "reference": "75365b91986c2405cf5e1e012c5595cd487a98be"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be",
+ "reference": "75365b91986c2405cf5e1e012c5595cd487a98be",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34"
+ },
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ },
+ "branch-alias": {
+ "dev-master": "1.9-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PhpOption\\": "src/PhpOption/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Johannes M. Schmitt",
+ "email": "schmittjoh@gmail.com",
+ "homepage": "https://github.com/schmittjoh"
+ },
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ }
+ ],
+ "description": "Option Type for PHP",
+ "keywords": [
+ "language",
+ "option",
+ "php",
+ "type"
+ ],
+ "support": {
+ "issues": "https://github.com/schmittjoh/php-option/issues",
+ "source": "https://github.com/schmittjoh/php-option/tree/1.9.5"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-12-27T19:41:33+00:00"
+ },
+ {
+ "name": "pragmarx/google2fa",
+ "version": "v8.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/antonioribeiro/google2fa.git",
+ "reference": "6f8d87ebd5afbf7790bde1ffc7579c7c705e0fad"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/6f8d87ebd5afbf7790bde1ffc7579c7c705e0fad",
+ "reference": "6f8d87ebd5afbf7790bde1ffc7579c7c705e0fad",
+ "shasum": ""
+ },
+ "require": {
+ "paragonie/constant_time_encoding": "^1.0|^2.0|^3.0",
+ "php": "^7.1|^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.9",
+ "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "PragmaRX\\Google2FA\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Antonio Carlos Ribeiro",
+ "email": "acr@antoniocarlosribeiro.com",
+ "role": "Creator & Designer"
+ }
+ ],
+ "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
+ "keywords": [
+ "2fa",
+ "Authentication",
+ "Two Factor Authentication",
+ "google2fa"
+ ],
+ "support": {
+ "issues": "https://github.com/antonioribeiro/google2fa/issues",
+ "source": "https://github.com/antonioribeiro/google2fa/tree/v8.0.3"
+ },
+ "time": "2024-09-05T11:56:40+00:00"
+ },
+ {
+ "name": "pragmarx/google2fa-laravel",
+ "version": "v3.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/antonioribeiro/google2fa-laravel.git",
+ "reference": "d885bb5bca8be03b226d040aa80250402760a67c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/antonioribeiro/google2fa-laravel/zipball/d885bb5bca8be03b226d040aa80250402760a67c",
+ "reference": "d885bb5bca8be03b226d040aa80250402760a67c",
+ "shasum": ""
+ },
+ "require": {
+ "laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0",
+ "php": ">=7.0",
+ "pragmarx/google2fa-qrcode": "^1.0|^2.0|^3.0"
+ },
+ "require-dev": {
+ "bacon/bacon-qr-code": "^2.0",
+ "orchestra/testbench": "3.4.*|3.5.*|3.6.*|3.7.*|4.*|5.*|6.*|7.*|8.*|9.*|10.*|11.*",
+ "phpunit/phpunit": "~5|~6|~7|~8|~9|~10|~11|~12"
+ },
+ "suggest": {
+ "bacon/bacon-qr-code": "Required to generate inline QR Codes.",
+ "pragmarx/recovery": "Generate recovery codes."
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "aliases": {
+ "Google2FA": "PragmaRX\\Google2FALaravel\\Facade"
+ },
+ "providers": [
+ "PragmaRX\\Google2FALaravel\\ServiceProvider"
+ ]
+ },
+ "component": "package",
+ "frameworks": [
+ "Laravel"
+ ],
+ "branch-alias": {
+ "dev-master": "0.2-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PragmaRX\\Google2FALaravel\\": "src/",
+ "PragmaRX\\Google2FALaravel\\Tests\\": "tests/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Antonio Carlos Ribeiro",
+ "email": "acr@antoniocarlosribeiro.com",
+ "role": "Creator & Designer"
+ }
+ ],
+ "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
+ "keywords": [
+ "Authentication",
+ "Two Factor Authentication",
+ "google2fa",
+ "laravel"
+ ],
+ "support": {
+ "issues": "https://github.com/antonioribeiro/google2fa-laravel/issues",
+ "source": "https://github.com/antonioribeiro/google2fa-laravel/tree/v3.0.1"
+ },
+ "time": "2026-03-17T20:54:53+00:00"
+ },
+ {
+ "name": "pragmarx/google2fa-qrcode",
+ "version": "v3.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/antonioribeiro/google2fa-qrcode.git",
+ "reference": "c23ebcc3a50de0d1566016a6dd1486e183bb78e1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/antonioribeiro/google2fa-qrcode/zipball/c23ebcc3a50de0d1566016a6dd1486e183bb78e1",
+ "reference": "c23ebcc3a50de0d1566016a6dd1486e183bb78e1",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1",
+ "pragmarx/google2fa": "^4.0|^5.0|^6.0|^7.0|^8.0"
+ },
+ "require-dev": {
+ "bacon/bacon-qr-code": "^2.0",
+ "chillerlan/php-qrcode": "^1.0|^2.0|^3.0|^4.0",
+ "khanamiryan/qrcode-detector-decoder": "^1.0",
+ "phpunit/phpunit": "~4|~5|~6|~7|~8|~9"
+ },
+ "suggest": {
+ "bacon/bacon-qr-code": "For QR Code generation, requires imagick",
+ "chillerlan/php-qrcode": "For QR Code generation"
+ },
+ "type": "library",
+ "extra": {
+ "component": "package",
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PragmaRX\\Google2FAQRCode\\": "src/",
+ "PragmaRX\\Google2FAQRCode\\Tests\\": "tests/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Antonio Carlos Ribeiro",
+ "email": "acr@antoniocarlosribeiro.com",
+ "role": "Creator & Designer"
+ }
+ ],
+ "description": "QR Code package for Google2FA",
+ "keywords": [
+ "2fa",
+ "Authentication",
+ "Two Factor Authentication",
+ "google2fa",
+ "qr code",
+ "qrcode"
+ ],
+ "support": {
+ "issues": "https://github.com/antonioribeiro/google2fa-qrcode/issues",
+ "source": "https://github.com/antonioribeiro/google2fa-qrcode/tree/v3.0.1"
+ },
+ "time": "2025-09-19T23:02:26+00:00"
+ },
+ {
+ "name": "psr/clock",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/clock.git",
+ "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
+ "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Psr\\Clock\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for reading the clock.",
+ "homepage": "https://github.com/php-fig/clock",
+ "keywords": [
+ "clock",
+ "now",
+ "psr",
+ "psr-20",
+ "time"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/clock/issues",
+ "source": "https://github.com/php-fig/clock/tree/1.0.0"
+ },
+ "time": "2022-11-25T14:36:26+00:00"
+ },
+ {
+ "name": "psr/container",
+ "version": "2.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/container.git",
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.4.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Container\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common Container Interface (PHP FIG PSR-11)",
+ "homepage": "https://github.com/php-fig/container",
+ "keywords": [
+ "PSR-11",
+ "container",
+ "container-interface",
+ "container-interop",
+ "psr"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/container/issues",
+ "source": "https://github.com/php-fig/container/tree/2.0.2"
+ },
+ "time": "2021-11-05T16:47:00+00:00"
+ },
+ {
+ "name": "psr/event-dispatcher",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/event-dispatcher.git",
+ "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
+ "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\EventDispatcher\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Standard interfaces for event handling.",
+ "keywords": [
+ "events",
+ "psr",
+ "psr-14"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/event-dispatcher/issues",
+ "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
+ },
+ "time": "2019-01-08T18:20:26+00:00"
+ },
+ {
+ "name": "psr/http-client",
+ "version": "1.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/http-client.git",
+ "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
+ "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0 || ^8.0",
+ "psr/http-message": "^1.0 || ^2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Client\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for HTTP clients",
+ "homepage": "https://github.com/php-fig/http-client",
+ "keywords": [
+ "http",
+ "http-client",
+ "psr",
+ "psr-18"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/http-client"
+ },
+ "time": "2023-09-23T14:17:50+00:00"
+ },
+ {
+ "name": "psr/http-factory",
+ "version": "1.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/http-factory.git",
+ "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
+ "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1",
+ "psr/http-message": "^1.0 || ^2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Message\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
+ "keywords": [
+ "factory",
+ "http",
+ "message",
+ "psr",
+ "psr-17",
+ "psr-7",
+ "request",
+ "response"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/http-factory"
+ },
+ "time": "2024-04-15T12:06:14+00:00"
+ },
+ {
+ "name": "psr/http-message",
+ "version": "2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/http-message.git",
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Message\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for HTTP messages",
+ "homepage": "https://github.com/php-fig/http-message",
+ "keywords": [
+ "http",
+ "http-message",
+ "psr",
+ "psr-7",
+ "request",
+ "response"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/http-message/tree/2.0"
+ },
+ "time": "2023-04-04T09:54:51+00:00"
+ },
+ {
+ "name": "psr/log",
+ "version": "3.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/log.git",
+ "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
+ "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Log\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for logging libraries",
+ "homepage": "https://github.com/php-fig/log",
+ "keywords": [
+ "log",
+ "psr",
+ "psr-3"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/log/tree/3.0.2"
+ },
+ "time": "2024-09-11T13:17:53+00:00"
+ },
+ {
+ "name": "psr/simple-cache",
+ "version": "3.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/simple-cache.git",
+ "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
+ "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\SimpleCache\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interfaces for simple caching",
+ "keywords": [
+ "cache",
+ "caching",
+ "psr",
+ "psr-16",
+ "simple-cache"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
+ },
+ "time": "2021-10-29T13:26:27+00:00"
+ },
+ {
+ "name": "psy/psysh",
+ "version": "v0.12.22",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/bobthecow/psysh.git",
+ "reference": "3be75d5b9244936dd4ac62ade2bfb004d13acf0f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3be75d5b9244936dd4ac62ade2bfb004d13acf0f",
+ "reference": "3be75d5b9244936dd4ac62ade2bfb004d13acf0f",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "ext-tokenizer": "*",
+ "nikic/php-parser": "^5.0 || ^4.0",
+ "php": "^8.0 || ^7.4",
+ "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
+ "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
+ },
+ "conflict": {
+ "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.2",
+ "composer/class-map-generator": "^1.6"
+ },
+ "suggest": {
+ "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
+ "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
+ "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
+ },
+ "bin": [
+ "bin/psysh"
+ ],
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": false,
+ "forward-command": false
+ },
+ "branch-alias": {
+ "dev-main": "0.12.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Psy\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Justin Hileman",
+ "email": "justin@justinhileman.info"
+ }
+ ],
+ "description": "An interactive shell for modern PHP.",
+ "homepage": "https://psysh.org",
+ "keywords": [
+ "REPL",
+ "console",
+ "interactive",
+ "shell"
+ ],
+ "support": {
+ "issues": "https://github.com/bobthecow/psysh/issues",
+ "source": "https://github.com/bobthecow/psysh/tree/v0.12.22"
+ },
+ "time": "2026-03-22T23:03:24+00:00"
+ },
+ {
+ "name": "ralouphie/getallheaders",
+ "version": "3.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ralouphie/getallheaders.git",
+ "reference": "120b605dfeb996808c31b6477290a714d356e822"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
+ "reference": "120b605dfeb996808c31b6477290a714d356e822",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.6"
+ },
+ "require-dev": {
+ "php-coveralls/php-coveralls": "^2.1",
+ "phpunit/phpunit": "^5 || ^6.5"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/getallheaders.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ralph Khattar",
+ "email": "ralph.khattar@gmail.com"
+ }
+ ],
+ "description": "A polyfill for getallheaders.",
+ "support": {
+ "issues": "https://github.com/ralouphie/getallheaders/issues",
+ "source": "https://github.com/ralouphie/getallheaders/tree/develop"
+ },
+ "time": "2019-03-08T08:55:37+00:00"
+ },
+ {
+ "name": "ramsey/collection",
+ "version": "2.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ramsey/collection.git",
+ "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
+ "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "captainhook/plugin-composer": "^5.3",
+ "ergebnis/composer-normalize": "^2.45",
+ "fakerphp/faker": "^1.24",
+ "hamcrest/hamcrest-php": "^2.0",
+ "jangregor/phpstan-prophecy": "^2.1",
+ "mockery/mockery": "^1.6",
+ "php-parallel-lint/php-console-highlighter": "^1.0",
+ "php-parallel-lint/php-parallel-lint": "^1.4",
+ "phpspec/prophecy-phpunit": "^2.3",
+ "phpstan/extension-installer": "^1.4",
+ "phpstan/phpstan": "^2.1",
+ "phpstan/phpstan-mockery": "^2.0",
+ "phpstan/phpstan-phpunit": "^2.0",
+ "phpunit/phpunit": "^10.5",
+ "ramsey/coding-standard": "^2.3",
+ "ramsey/conventional-commits": "^1.6",
+ "roave/security-advisories": "dev-latest"
+ },
+ "type": "library",
+ "extra": {
+ "captainhook": {
+ "force-install": true
+ },
+ "ramsey/conventional-commits": {
+ "configFile": "conventional-commits.json"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Ramsey\\Collection\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ben Ramsey",
+ "email": "ben@benramsey.com",
+ "homepage": "https://benramsey.com"
+ }
+ ],
+ "description": "A PHP library for representing and manipulating collections.",
+ "keywords": [
+ "array",
+ "collection",
+ "hash",
+ "map",
+ "queue",
+ "set"
+ ],
+ "support": {
+ "issues": "https://github.com/ramsey/collection/issues",
+ "source": "https://github.com/ramsey/collection/tree/2.1.1"
+ },
+ "time": "2025-03-22T05:38:12+00:00"
+ },
+ {
+ "name": "ramsey/uuid",
+ "version": "4.9.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ramsey/uuid.git",
+ "reference": "8429c78ca35a09f27565311b98101e2826affde0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/8429c78ca35a09f27565311b98101e2826affde0",
+ "reference": "8429c78ca35a09f27565311b98101e2826affde0",
+ "shasum": ""
+ },
+ "require": {
+ "brick/math": "^0.8.16 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14",
+ "php": "^8.0",
+ "ramsey/collection": "^1.2 || ^2.0"
+ },
+ "replace": {
+ "rhumsaa/uuid": "self.version"
+ },
+ "require-dev": {
+ "captainhook/captainhook": "^5.25",
+ "captainhook/plugin-composer": "^5.3",
+ "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
+ "ergebnis/composer-normalize": "^2.47",
+ "mockery/mockery": "^1.6",
+ "paragonie/random-lib": "^2",
+ "php-mock/php-mock": "^2.6",
+ "php-mock/php-mock-mockery": "^1.5",
+ "php-parallel-lint/php-parallel-lint": "^1.4.0",
+ "phpbench/phpbench": "^1.2.14",
+ "phpstan/extension-installer": "^1.4",
+ "phpstan/phpstan": "^2.1",
+ "phpstan/phpstan-mockery": "^2.0",
+ "phpstan/phpstan-phpunit": "^2.0",
+ "phpunit/phpunit": "^9.6",
+ "slevomat/coding-standard": "^8.18",
+ "squizlabs/php_codesniffer": "^3.13"
+ },
+ "suggest": {
+ "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
+ "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
+ "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
+ "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
+ "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
+ },
+ "type": "library",
+ "extra": {
+ "captainhook": {
+ "force-install": true
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Ramsey\\Uuid\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
+ "keywords": [
+ "guid",
+ "identifier",
+ "uuid"
+ ],
+ "support": {
+ "issues": "https://github.com/ramsey/uuid/issues",
+ "source": "https://github.com/ramsey/uuid/tree/4.9.2"
+ },
+ "time": "2025-12-14T04:43:48+00:00"
+ },
+ {
+ "name": "symfony/clock",
+ "version": "v8.0.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/clock.git",
+ "reference": "b55a638b189a6faa875e0ccdb00908fb87af95b3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/clock/zipball/b55a638b189a6faa875e0ccdb00908fb87af95b3",
+ "reference": "b55a638b189a6faa875e0ccdb00908fb87af95b3",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "psr/clock": "^1.0"
+ },
+ "provide": {
+ "psr/clock-implementation": "1.0"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "Resources/now.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\Clock\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Decouples applications from the system clock",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "clock",
+ "psr20",
+ "time"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/clock/tree/v8.0.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-03-30T15:14:47+00:00"
+ },
+ {
+ "name": "symfony/console",
+ "version": "v8.0.11",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/console.git",
+ "reference": "3156577f46a38aa1b9323aad223de7a9cd426782"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/console/zipball/3156577f46a38aa1b9323aad223de7a9cd426782",
+ "reference": "3156577f46a38aa1b9323aad223de7a9cd426782",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "symfony/polyfill-mbstring": "^1.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/string": "^7.4|^8.0"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0|2.0|3.0"
+ },
+ "require-dev": {
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^7.4|^8.0",
+ "symfony/dependency-injection": "^7.4|^8.0",
+ "symfony/event-dispatcher": "^7.4|^8.0",
+ "symfony/http-foundation": "^7.4|^8.0",
+ "symfony/http-kernel": "^7.4|^8.0",
+ "symfony/lock": "^7.4|^8.0",
+ "symfony/messenger": "^7.4|^8.0",
+ "symfony/process": "^7.4|^8.0",
+ "symfony/stopwatch": "^7.4|^8.0",
+ "symfony/var-dumper": "^7.4|^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Console\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Eases the creation of beautiful and testable command line interfaces",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "cli",
+ "command-line",
+ "console",
+ "terminal"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/console/tree/v8.0.11"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-05-13T12:07:53+00:00"
+ },
+ {
+ "name": "symfony/css-selector",
+ "version": "v8.0.9",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/css-selector.git",
+ "reference": "3665cfade90565430909b906394c73c8739e57d0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/3665cfade90565430909b906394c73c8739e57d0",
+ "reference": "3665cfade90565430909b906394c73c8739e57d0",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\CssSelector\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Jean-François Simon",
+ "email": "jeanfrancois.simon@sensiolabs.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Converts CSS selectors to XPath expressions",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/css-selector/tree/v8.0.9"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-18T13:51:42+00:00"
+ },
+ {
+ "name": "symfony/deprecation-contracts",
+ "version": "v3.7.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/deprecation-contracts.git",
+ "reference": "50f59d1f3ca46d41ac911f97a78626b6756af35b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/50f59d1f3ca46d41ac911f97a78626b6756af35b",
+ "reference": "50f59d1f3ca46d41ac911f97a78626b6756af35b",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
+ "branch-alias": {
+ "dev-main": "3.7-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "function.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "A generic function and convention to trigger deprecation notices",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.7.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-13T15:52:40+00:00"
+ },
+ {
+ "name": "symfony/error-handler",
+ "version": "v8.0.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/error-handler.git",
+ "reference": "c1119fe8dcfc3825ec74ec061b96ef0c8f281517"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/c1119fe8dcfc3825ec74ec061b96ef0c8f281517",
+ "reference": "c1119fe8dcfc3825ec74ec061b96ef0c8f281517",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "psr/log": "^1|^2|^3",
+ "symfony/polyfill-php85": "^1.32",
+ "symfony/var-dumper": "^7.4|^8.0"
+ },
+ "conflict": {
+ "symfony/deprecation-contracts": "<2.5"
+ },
+ "require-dev": {
+ "symfony/console": "^7.4|^8.0",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/http-kernel": "^7.4|^8.0",
+ "symfony/serializer": "^7.4|^8.0",
+ "symfony/webpack-encore-bundle": "^1.0|^2.0"
+ },
+ "bin": [
+ "Resources/bin/patch-type-declarations"
+ ],
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\ErrorHandler\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides tools to manage errors and ease debugging PHP code",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/error-handler/tree/v8.0.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-03-30T15:14:47+00:00"
+ },
+ {
+ "name": "symfony/event-dispatcher",
+ "version": "v8.0.9",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/event-dispatcher.git",
+ "reference": "0c3c1a17604c4dbbec4b93fe162c538482096e1f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0c3c1a17604c4dbbec4b93fe162c538482096e1f",
+ "reference": "0c3c1a17604c4dbbec4b93fe162c538482096e1f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "symfony/event-dispatcher-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "symfony/security-http": "<7.4",
+ "symfony/service-contracts": "<2.5"
+ },
+ "provide": {
+ "psr/event-dispatcher-implementation": "1.0",
+ "symfony/event-dispatcher-implementation": "2.0|3.0"
+ },
+ "require-dev": {
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^7.4|^8.0",
+ "symfony/dependency-injection": "^7.4|^8.0",
+ "symfony/error-handler": "^7.4|^8.0",
+ "symfony/expression-language": "^7.4|^8.0",
+ "symfony/framework-bundle": "^7.4|^8.0",
+ "symfony/http-foundation": "^7.4|^8.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/stopwatch": "^7.4|^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\EventDispatcher\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/event-dispatcher/tree/v8.0.9"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-18T13:51:42+00:00"
+ },
+ {
+ "name": "symfony/event-dispatcher-contracts",
+ "version": "v3.7.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/event-dispatcher-contracts.git",
+ "reference": "ccba7060602b7fed0b03c85bf025257f76d9ef32"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/ccba7060602b7fed0b03c85bf025257f76d9ef32",
+ "reference": "ccba7060602b7fed0b03c85bf025257f76d9ef32",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "psr/event-dispatcher": "^1"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
+ "branch-alias": {
+ "dev-main": "3.7-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\EventDispatcher\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to dispatching event",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.7.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-01-05T13:30:16+00:00"
+ },
+ {
+ "name": "symfony/finder",
+ "version": "v8.0.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/finder.git",
+ "reference": "8da41214757b87d97f181e3d14a4179286151007"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/8da41214757b87d97f181e3d14a4179286151007",
+ "reference": "8da41214757b87d97f181e3d14a4179286151007",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4"
+ },
+ "require-dev": {
+ "symfony/filesystem": "^7.4|^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Finder\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Finds files and directories via an intuitive fluent interface",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/finder/tree/v8.0.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-03-30T15:14:47+00:00"
+ },
+ {
+ "name": "symfony/http-foundation",
+ "version": "v8.0.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/http-foundation.git",
+ "reference": "02656f7ebeae5c155d659e946f6b3a33df24051b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/02656f7ebeae5c155d659e946f6b3a33df24051b",
+ "reference": "02656f7ebeae5c155d659e946f6b3a33df24051b",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "symfony/polyfill-mbstring": "^1.1"
+ },
+ "conflict": {
+ "doctrine/dbal": "<4.3"
+ },
+ "require-dev": {
+ "doctrine/dbal": "^4.3",
+ "predis/predis": "^1.1|^2.0",
+ "symfony/cache": "^7.4|^8.0",
+ "symfony/clock": "^7.4|^8.0",
+ "symfony/dependency-injection": "^7.4|^8.0",
+ "symfony/expression-language": "^7.4|^8.0",
+ "symfony/http-kernel": "^7.4|^8.0",
+ "symfony/mime": "^7.4|^8.0",
+ "symfony/rate-limiter": "^7.4|^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\HttpFoundation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Defines an object-oriented layer for the HTTP specification",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/http-foundation/tree/v8.0.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-03-30T15:14:47+00:00"
+ },
+ {
+ "name": "symfony/http-kernel",
+ "version": "v8.0.11",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/http-kernel.git",
+ "reference": "20d3680373f4b791903c09e74b45402b4aeda71c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/20d3680373f4b791903c09e74b45402b4aeda71c",
+ "reference": "20d3680373f4b791903c09e74b45402b4aeda71c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "psr/log": "^1|^2|^3",
+ "symfony/error-handler": "^7.4|^8.0",
+ "symfony/event-dispatcher": "^7.4|^8.0",
+ "symfony/http-foundation": "^7.4|^8.0",
+ "symfony/polyfill-ctype": "^1.8"
+ },
+ "conflict": {
+ "symfony/flex": "<2.10",
+ "symfony/http-client-contracts": "<2.5",
+ "symfony/translation-contracts": "<2.5",
+ "twig/twig": "<3.21"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0|2.0|3.0"
+ },
+ "require-dev": {
+ "psr/cache": "^1.0|^2.0|^3.0",
+ "symfony/browser-kit": "^7.4|^8.0",
+ "symfony/clock": "^7.4|^8.0",
+ "symfony/config": "^7.4|^8.0",
+ "symfony/console": "^7.4|^8.0",
+ "symfony/css-selector": "^7.4|^8.0",
+ "symfony/dependency-injection": "^7.4|^8.0",
+ "symfony/dom-crawler": "^7.4|^8.0",
+ "symfony/expression-language": "^7.4|^8.0",
+ "symfony/finder": "^7.4|^8.0",
+ "symfony/http-client-contracts": "^2.5|^3",
+ "symfony/process": "^7.4|^8.0",
+ "symfony/property-access": "^7.4|^8.0",
+ "symfony/routing": "^7.4|^8.0",
+ "symfony/serializer": "^7.4|^8.0",
+ "symfony/stopwatch": "^7.4|^8.0",
+ "symfony/translation": "^7.4|^8.0",
+ "symfony/translation-contracts": "^2.5|^3",
+ "symfony/uid": "^7.4|^8.0",
+ "symfony/validator": "^7.4|^8.0",
+ "symfony/var-dumper": "^7.4|^8.0",
+ "symfony/var-exporter": "^7.4|^8.0",
+ "twig/twig": "^3.21"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\HttpKernel\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides a structured process for converting a Request into a Response",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/http-kernel/tree/v8.0.11"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-05-13T18:07:14+00:00"
+ },
+ {
+ "name": "symfony/mailer",
+ "version": "v8.0.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/mailer.git",
+ "reference": "ca5f6edaf8780ece814404b58a4482b22b509c56"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/mailer/zipball/ca5f6edaf8780ece814404b58a4482b22b509c56",
+ "reference": "ca5f6edaf8780ece814404b58a4482b22b509c56",
+ "shasum": ""
+ },
+ "require": {
+ "egulias/email-validator": "^2.1.10|^3|^4",
+ "php": ">=8.4",
+ "psr/event-dispatcher": "^1",
+ "psr/log": "^1|^2|^3",
+ "symfony/event-dispatcher": "^7.4|^8.0",
+ "symfony/mime": "^7.4|^8.0",
+ "symfony/service-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "symfony/http-client-contracts": "<2.5"
+ },
+ "require-dev": {
+ "symfony/console": "^7.4|^8.0",
+ "symfony/http-client": "^7.4|^8.0",
+ "symfony/messenger": "^7.4|^8.0",
+ "symfony/twig-bridge": "^7.4|^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Mailer\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Helps sending emails",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/mailer/tree/v8.0.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-03-30T15:14:47+00:00"
+ },
+ {
+ "name": "symfony/mime",
+ "version": "v8.0.9",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/mime.git",
+ "reference": "a9fcb293650c054b62a5b406f4e92e7b711ea333"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/a9fcb293650c054b62a5b406f4e92e7b711ea333",
+ "reference": "a9fcb293650c054b62a5b406f4e92e7b711ea333",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "symfony/polyfill-intl-idn": "^1.10",
+ "symfony/polyfill-mbstring": "^1.0"
+ },
+ "conflict": {
+ "egulias/email-validator": "~3.0.0",
+ "phpdocumentor/reflection-docblock": "<5.2|>=7",
+ "phpdocumentor/type-resolver": "<1.5.1"
+ },
+ "require-dev": {
+ "egulias/email-validator": "^2.1.10|^3.1|^4",
+ "league/html-to-markdown": "^5.0",
+ "phpdocumentor/reflection-docblock": "^5.2|^6.0",
+ "symfony/dependency-injection": "^7.4|^8.0",
+ "symfony/process": "^7.4|^8.0",
+ "symfony/property-access": "^7.4|^8.0",
+ "symfony/property-info": "^7.4|^8.0",
+ "symfony/serializer": "^7.4|^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Mime\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Allows manipulating MIME messages",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "mime",
+ "mime-type"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/mime/tree/v8.0.9"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-29T15:02:55+00:00"
+ },
+ {
+ "name": "symfony/polyfill-ctype",
+ "version": "v1.37.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-ctype.git",
+ "reference": "141046a8f9477948ff284fa65be2095baafb94f2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/141046a8f9477948ff284fa65be2095baafb94f2",
+ "reference": "141046a8f9477948ff284fa65be2095baafb94f2",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "provide": {
+ "ext-ctype": "*"
+ },
+ "suggest": {
+ "ext-ctype": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Ctype\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Gert de Pagter",
+ "email": "BackEndTea@gmail.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for ctype functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "ctype",
+ "polyfill",
+ "portable"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.37.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-10T16:19:22+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-grapheme",
+ "version": "v1.37.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
+ "reference": "4864388bfbd3001ce88e234fab652acd91fdc57e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/4864388bfbd3001ce88e234fab652acd91fdc57e",
+ "reference": "4864388bfbd3001ce88e234fab652acd91fdc57e",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for intl's grapheme_* functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "grapheme",
+ "intl",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.37.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-26T13:13:48+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-idn",
+ "version": "v1.37.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-idn.git",
+ "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
+ "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2",
+ "symfony/polyfill-intl-normalizer": "^1.10"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Intl\\Idn\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Laurent Bassin",
+ "email": "laurent@bassin.info"
+ },
+ {
+ "name": "Trevor Rowbotham",
+ "email": "trevor.rowbotham@pm.me"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "idn",
+ "intl",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.37.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-10T14:38:51+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-normalizer",
+ "version": "v1.37.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
+ "reference": "3833d7255cc303546435cb650316bff708a1c75c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
+ "reference": "3833d7255cc303546435cb650316bff708a1c75c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for intl's Normalizer class and related functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "intl",
+ "normalizer",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.37.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-09T11:45:10+00:00"
+ },
+ {
+ "name": "symfony/polyfill-mbstring",
+ "version": "v1.37.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "6a21eb99c6973357967f6ce3708cd55a6bec6315"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6a21eb99c6973357967f6ce3708cd55a6bec6315",
+ "reference": "6a21eb99c6973357967f6ce3708cd55a6bec6315",
+ "shasum": ""
+ },
+ "require": {
+ "ext-iconv": "*",
+ "php": ">=7.2"
+ },
+ "provide": {
+ "ext-mbstring": "*"
+ },
+ "suggest": {
+ "ext-mbstring": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Mbstring\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for the Mbstring extension",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "mbstring",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.37.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-10T17:25:58+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php80",
+ "version": "v1.37.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php80.git",
+ "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
+ "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php80\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ion Bazan",
+ "email": "ion.bazan@gmail.com"
+ },
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.37.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-10T16:19:22+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php84",
+ "version": "v1.37.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php84.git",
+ "reference": "88486db2c389b290bf87ff1de7ebc1e13e42bb06"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/88486db2c389b290bf87ff1de7ebc1e13e42bb06",
+ "reference": "88486db2c389b290bf87ff1de7ebc1e13e42bb06",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php84\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php84/tree/v1.37.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-10T18:47:49+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php85",
+ "version": "v1.37.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php85.git",
+ "reference": "fcfa4973a9917cef23f2e38774da74a2b7d115ee"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/fcfa4973a9917cef23f2e38774da74a2b7d115ee",
+ "reference": "fcfa4973a9917cef23f2e38774da74a2b7d115ee",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php85\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php85/tree/v1.37.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-26T13:10:57+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php86",
+ "version": "v1.37.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php86.git",
+ "reference": "33d8fc5a705481e21fe3a81212b26f9b1f61749c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php86/zipball/33d8fc5a705481e21fe3a81212b26f9b1f61749c",
+ "reference": "33d8fc5a705481e21fe3a81212b26f9b1f61749c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php86\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.6+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php86/tree/v1.37.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-26T13:13:48+00:00"
+ },
+ {
+ "name": "symfony/polyfill-uuid",
+ "version": "v1.37.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-uuid.git",
+ "reference": "26dfec253c4cf3e51b541b52ddf7e42cb0908e94"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/26dfec253c4cf3e51b541b52ddf7e42cb0908e94",
+ "reference": "26dfec253c4cf3e51b541b52ddf7e42cb0908e94",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "provide": {
+ "ext-uuid": "*"
+ },
+ "suggest": {
+ "ext-uuid": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Uuid\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Grégoire Pineau",
+ "email": "lyrixx@lyrixx.info"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for uuid functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "uuid"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-uuid/tree/v1.37.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-10T16:19:22+00:00"
+ },
+ {
+ "name": "symfony/process",
+ "version": "v8.0.11",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/process.git",
+ "reference": "26d89e459f037d2873300605d0a07e7a8ef84db0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/process/zipball/26d89e459f037d2873300605d0a07e7a8ef84db0",
+ "reference": "26d89e459f037d2873300605d0a07e7a8ef84db0",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Process\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Executes commands in sub-processes",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/process/tree/v8.0.11"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-05-11T16:56:32+00:00"
+ },
+ {
+ "name": "symfony/routing",
+ "version": "v8.0.9",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/routing.git",
+ "reference": "75d1bd8e5da3424e4db2fc3ff0222cb4d0c73038"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/75d1bd8e5da3424e4db2fc3ff0222cb4d0c73038",
+ "reference": "75d1bd8e5da3424e4db2fc3ff0222cb4d0c73038",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "symfony/deprecation-contracts": "^2.5|^3"
+ },
+ "require-dev": {
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^7.4|^8.0",
+ "symfony/dependency-injection": "^7.4|^8.0",
+ "symfony/expression-language": "^7.4|^8.0",
+ "symfony/http-foundation": "^7.4|^8.0",
+ "symfony/yaml": "^7.4|^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Routing\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Maps an HTTP request to a set of configuration variables",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "router",
+ "routing",
+ "uri",
+ "url"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/routing/tree/v8.0.9"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-29T15:02:55+00:00"
+ },
+ {
+ "name": "symfony/service-contracts",
+ "version": "v3.7.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/service-contracts.git",
+ "reference": "d25d82433a80eba6aa0e6c24b61d7370d99e444a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d25d82433a80eba6aa0e6c24b61d7370d99e444a",
+ "reference": "d25d82433a80eba6aa0e6c24b61d7370d99e444a",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "psr/container": "^1.1|^2.0",
+ "symfony/deprecation-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "ext-psr": "<1.1|>=2"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
+ "branch-alias": {
+ "dev-main": "3.7-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\Service\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Test/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to writing services",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/service-contracts/tree/v3.7.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-03-28T09:44:51+00:00"
+ },
+ {
+ "name": "symfony/string",
+ "version": "v8.0.11",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/string.git",
+ "reference": "39be2ad058a3c0bd558edca23e65f009865d75ff"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/string/zipball/39be2ad058a3c0bd558edca23e65f009865d75ff",
+ "reference": "39be2ad058a3c0bd558edca23e65f009865d75ff",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "symfony/polyfill-ctype": "^1.8",
+ "symfony/polyfill-intl-grapheme": "^1.33",
+ "symfony/polyfill-intl-normalizer": "^1.0",
+ "symfony/polyfill-mbstring": "^1.0"
+ },
+ "conflict": {
+ "symfony/translation-contracts": "<2.5"
+ },
+ "require-dev": {
+ "symfony/emoji": "^7.4|^8.0",
+ "symfony/http-client": "^7.4|^8.0",
+ "symfony/intl": "^7.4|^8.0",
+ "symfony/translation-contracts": "^2.5|^3.0",
+ "symfony/var-exporter": "^7.4|^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "Resources/functions.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\String\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "grapheme",
+ "i18n",
+ "string",
+ "unicode",
+ "utf-8",
+ "utf8"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/string/tree/v8.0.11"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-05-13T12:07:53+00:00"
+ },
+ {
+ "name": "symfony/translation",
+ "version": "v8.0.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/translation.git",
+ "reference": "f63e9342e12646a57c91ef8a366a4f9d8e557b67"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/f63e9342e12646a57c91ef8a366a4f9d8e557b67",
+ "reference": "f63e9342e12646a57c91ef8a366a4f9d8e557b67",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "symfony/polyfill-mbstring": "^1.0",
+ "symfony/translation-contracts": "^3.6.1"
+ },
+ "conflict": {
+ "nikic/php-parser": "<5.0",
+ "symfony/http-client-contracts": "<2.5",
+ "symfony/service-contracts": "<2.5"
+ },
+ "provide": {
+ "symfony/translation-implementation": "2.3|3.0"
+ },
+ "require-dev": {
+ "nikic/php-parser": "^5.0",
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^7.4|^8.0",
+ "symfony/console": "^7.4|^8.0",
+ "symfony/dependency-injection": "^7.4|^8.0",
+ "symfony/finder": "^7.4|^8.0",
+ "symfony/http-client-contracts": "^2.5|^3.0",
+ "symfony/http-kernel": "^7.4|^8.0",
+ "symfony/intl": "^7.4|^8.0",
+ "symfony/polyfill-intl-icu": "^1.21",
+ "symfony/routing": "^7.4|^8.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/yaml": "^7.4|^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "Resources/functions.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\Translation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides tools to internationalize your application",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/translation/tree/v8.0.10"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-05-06T11:30:54+00:00"
+ },
+ {
+ "name": "symfony/translation-contracts",
+ "version": "v3.7.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/translation-contracts.git",
+ "reference": "0ab302977a952b42fd51475c4ebac81f8da0a95d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/0ab302977a952b42fd51475c4ebac81f8da0a95d",
+ "reference": "0ab302977a952b42fd51475c4ebac81f8da0a95d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
+ "branch-alias": {
+ "dev-main": "3.7-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\Translation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Test/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to translation",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/translation-contracts/tree/v3.7.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-01-05T13:30:16+00:00"
+ },
+ {
+ "name": "symfony/uid",
+ "version": "v8.0.9",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/uid.git",
+ "reference": "4d9d6510bbe88ebb4608b7200d18606cdf80825c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/uid/zipball/4d9d6510bbe88ebb4608b7200d18606cdf80825c",
+ "reference": "4d9d6510bbe88ebb4608b7200d18606cdf80825c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "symfony/polyfill-uuid": "^1.15"
+ },
+ "require-dev": {
+ "symfony/console": "^7.4|^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Uid\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Grégoire Pineau",
+ "email": "lyrixx@lyrixx.info"
+ },
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides an object-oriented API to generate and represent UIDs",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "UID",
+ "ulid",
+ "uuid"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/uid/tree/v8.0.9"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-30T16:10:06+00:00"
+ },
+ {
+ "name": "symfony/var-dumper",
+ "version": "v8.0.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/var-dumper.git",
+ "reference": "cfb7badd53bf4177f6e9416cfbbccc13c0e773a1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cfb7badd53bf4177f6e9416cfbbccc13c0e773a1",
+ "reference": "cfb7badd53bf4177f6e9416cfbbccc13c0e773a1",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "symfony/polyfill-mbstring": "^1.0"
+ },
+ "conflict": {
+ "symfony/console": "<7.4",
+ "symfony/error-handler": "<7.4"
+ },
+ "require-dev": {
+ "symfony/console": "^7.4|^8.0",
+ "symfony/http-kernel": "^7.4|^8.0",
+ "symfony/process": "^7.4|^8.0",
+ "symfony/uid": "^7.4|^8.0",
+ "twig/twig": "^3.12"
+ },
+ "bin": [
+ "Resources/bin/var-dump-server"
+ ],
+ "type": "library",
+ "autoload": {
+ "files": [
+ "Resources/functions/dump.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\VarDumper\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides mechanisms for walking through any arbitrary PHP variable",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "debug",
+ "dump"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/var-dumper/tree/v8.0.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-03-31T07:15:36+00:00"
+ },
+ {
+ "name": "symfony/yaml",
+ "version": "v8.0.11",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/yaml.git",
+ "reference": "48046fbd5567bd1717f278eaa2cfc3131f489984"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/48046fbd5567bd1717f278eaa2cfc3131f489984",
+ "reference": "48046fbd5567bd1717f278eaa2cfc3131f489984",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "symfony/polyfill-ctype": "^1.8"
+ },
+ "conflict": {
+ "symfony/console": "<7.4"
+ },
+ "require-dev": {
+ "symfony/console": "^7.4|^8.0"
+ },
+ "bin": [
+ "Resources/bin/yaml-lint"
+ ],
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Yaml\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Loads and dumps YAML files",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/yaml/tree/v8.0.11"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-05-13T12:07:53+00:00"
+ },
+ {
+ "name": "tijsverkoyen/css-to-inline-styles",
+ "version": "v2.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
+ "reference": "f0292ccf0ec75843d65027214426b6b163b48b41"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/f0292ccf0ec75843d65027214426b6b163b48b41",
+ "reference": "f0292ccf0ec75843d65027214426b6b163b48b41",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "php": "^7.4 || ^8.0",
+ "symfony/css-selector": "^5.4 || ^6.0 || ^7.0 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^2.0",
+ "phpstan/phpstan-phpunit": "^2.0",
+ "phpunit/phpunit": "^8.5.21 || ^9.5.10"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "TijsVerkoyen\\CssToInlineStyles\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Tijs Verkoyen",
+ "email": "css_to_inline_styles@verkoyen.eu",
+ "role": "Developer"
+ }
+ ],
+ "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
+ "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
+ "support": {
+ "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
+ "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.4.0"
+ },
+ "time": "2025-12-02T11:56:42+00:00"
+ },
+ {
+ "name": "vlucas/phpdotenv",
+ "version": "v5.6.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/vlucas/phpdotenv.git",
+ "reference": "955e7815d677a3eaa7075231212f2110983adecc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc",
+ "reference": "955e7815d677a3eaa7075231212f2110983adecc",
+ "shasum": ""
+ },
+ "require": {
+ "ext-pcre": "*",
+ "graham-campbell/result-type": "^1.1.4",
+ "php": "^7.2.5 || ^8.0",
+ "phpoption/phpoption": "^1.9.5",
+ "symfony/polyfill-ctype": "^1.26",
+ "symfony/polyfill-mbstring": "^1.26",
+ "symfony/polyfill-php80": "^1.26"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "ext-filter": "*",
+ "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
+ },
+ "suggest": {
+ "ext-filter": "Required to use the boolean validator."
+ },
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ },
+ "branch-alias": {
+ "dev-master": "5.6-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Dotenv\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
+ {
+ "name": "Vance Lucas",
+ "email": "vance@vancelucas.com",
+ "homepage": "https://github.com/vlucas"
+ }
+ ],
+ "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
+ "keywords": [
+ "dotenv",
+ "env",
+ "environment"
+ ],
+ "support": {
+ "issues": "https://github.com/vlucas/phpdotenv/issues",
+ "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-12-27T19:49:13+00:00"
+ },
+ {
+ "name": "voku/portable-ascii",
+ "version": "2.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/voku/portable-ascii.git",
+ "reference": "8e1051fe39379367aecf014f41744ce7539a856f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/voku/portable-ascii/zipball/8e1051fe39379367aecf014f41744ce7539a856f",
+ "reference": "8e1051fe39379367aecf014f41744ce7539a856f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~8.5 || ~9.6 || ~10.5 || ~11.5"
+ },
+ "suggest": {
+ "ext-intl": "Use Intl for transliterator_transliterate() support"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "voku\\": "src/voku/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Lars Moelleken",
+ "homepage": "https://www.moelleken.org/"
+ }
+ ],
+ "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
+ "homepage": "https://github.com/voku/portable-ascii",
+ "keywords": [
+ "ascii",
+ "clean",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/voku/portable-ascii/issues",
+ "source": "https://github.com/voku/portable-ascii/tree/2.1.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.me/moelleken",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/voku",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/portable-ascii",
+ "type": "open_collective"
+ },
+ {
+ "url": "https://www.patreon.com/voku",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-26T05:33:54+00:00"
+ }
+ ],
+ "packages-dev": [
+ {
+ "name": "fakerphp/faker",
+ "version": "v1.24.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/FakerPHP/Faker.git",
+ "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
+ "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4 || ^8.0",
+ "psr/container": "^1.0 || ^2.0",
+ "symfony/deprecation-contracts": "^2.2 || ^3.0"
+ },
+ "conflict": {
+ "fzaninotto/faker": "*"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.4.1",
+ "doctrine/persistence": "^1.3 || ^2.0",
+ "ext-intl": "*",
+ "phpunit/phpunit": "^9.5.26",
+ "symfony/phpunit-bridge": "^5.4.16"
+ },
+ "suggest": {
+ "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
+ "ext-curl": "Required by Faker\\Provider\\Image to download images.",
+ "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
+ "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
+ "ext-mbstring": "Required for multibyte Unicode string functionality."
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Faker\\": "src/Faker/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "François Zaninotto"
+ }
+ ],
+ "description": "Faker is a PHP library that generates fake data for you.",
+ "keywords": [
+ "data",
+ "faker",
+ "fixtures"
+ ],
+ "support": {
+ "issues": "https://github.com/FakerPHP/Faker/issues",
+ "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
+ },
+ "time": "2024-11-21T13:46:39+00:00"
+ },
+ {
+ "name": "filp/whoops",
+ "version": "2.18.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/filp/whoops.git",
+ "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d",
+ "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0",
+ "psr/log": "^1.0.1 || ^2.0 || ^3.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.0",
+ "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
+ "symfony/var-dumper": "^4.0 || ^5.0"
+ },
+ "suggest": {
+ "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
+ "whoops/soap": "Formats errors as SOAP responses"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.7-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Whoops\\": "src/Whoops/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Filipe Dobreira",
+ "homepage": "https://github.com/filp",
+ "role": "Developer"
+ }
+ ],
+ "description": "php error handling for cool kids",
+ "homepage": "https://filp.github.io/whoops/",
+ "keywords": [
+ "error",
+ "exception",
+ "handling",
+ "library",
+ "throwable",
+ "whoops"
+ ],
+ "support": {
+ "issues": "https://github.com/filp/whoops/issues",
+ "source": "https://github.com/filp/whoops/tree/2.18.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/denis-sokolov",
+ "type": "github"
+ }
+ ],
+ "time": "2025-08-08T12:00:00+00:00"
+ },
+ {
+ "name": "hamcrest/hamcrest-php",
+ "version": "v2.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/hamcrest/hamcrest-php.git",
+ "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
+ "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4|^8.0"
+ },
+ "replace": {
+ "cordoval/hamcrest-php": "*",
+ "davedevelopment/hamcrest-php": "*",
+ "kodova/hamcrest-php": "*"
+ },
+ "require-dev": {
+ "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
+ "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "hamcrest"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "description": "This is the PHP port of Hamcrest Matchers",
+ "keywords": [
+ "test"
+ ],
+ "support": {
+ "issues": "https://github.com/hamcrest/hamcrest-php/issues",
+ "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
+ },
+ "time": "2025-04-30T06:54:44+00:00"
+ },
+ {
+ "name": "laravel/agent-detector",
+ "version": "v2.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/agent-detector.git",
+ "reference": "90694b9256099591cf9e55d08c18ba7a00bf099f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/agent-detector/zipball/90694b9256099591cf9e55d08c18ba7a00bf099f",
+ "reference": "90694b9256099591cf9e55d08c18ba7a00bf099f",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.2.0"
+ },
+ "require-dev": {
+ "laravel/pint": "^1.24.0",
+ "pestphp/pest": "^3.8.5|^4.1.0",
+ "pestphp/pest-plugin-type-coverage": "^3.0|^4.0.2",
+ "phpstan/phpstan": "^2.1.26",
+ "rector/rector": "^2.1.7",
+ "symfony/var-dumper": "^7.3.3"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Laravel\\AgentDetector\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ }
+ ],
+ "description": "Detect if code is running in an AI agent or automated development environment",
+ "homepage": "https://github.com/laravel/agent-detector",
+ "keywords": [
+ "Agent",
+ "ai",
+ "automation",
+ "claude",
+ "cursor",
+ "detection",
+ "devin",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/agent-detector/issues",
+ "source": "https://github.com/laravel/agent-detector"
+ },
+ "time": "2026-04-29T18:32:34+00:00"
+ },
+ {
+ "name": "laravel/pail",
+ "version": "v1.2.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/pail.git",
+ "reference": "aa71a01c309e7f66bc2ec4fb1a59291b82eb4abf"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/pail/zipball/aa71a01c309e7f66bc2ec4fb1a59291b82eb4abf",
+ "reference": "aa71a01c309e7f66bc2ec4fb1a59291b82eb4abf",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "illuminate/console": "^10.24|^11.0|^12.0|^13.0",
+ "illuminate/contracts": "^10.24|^11.0|^12.0|^13.0",
+ "illuminate/log": "^10.24|^11.0|^12.0|^13.0",
+ "illuminate/process": "^10.24|^11.0|^12.0|^13.0",
+ "illuminate/support": "^10.24|^11.0|^12.0|^13.0",
+ "nunomaduro/termwind": "^1.15|^2.0",
+ "php": "^8.2",
+ "symfony/console": "^6.0|^7.0|^8.0"
+ },
+ "require-dev": {
+ "laravel/framework": "^10.24|^11.0|^12.0|^13.0",
+ "laravel/pint": "^1.13",
+ "orchestra/testbench-core": "^8.13|^9.17|^10.8|^11.0",
+ "pestphp/pest": "^2.20|^3.0|^4.0",
+ "pestphp/pest-plugin-type-coverage": "^2.3|^3.0|^4.0",
+ "phpstan/phpstan": "^1.12.27",
+ "symfony/var-dumper": "^6.3|^7.0|^8.0",
+ "symfony/yaml": "^6.3|^7.0|^8.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Laravel\\Pail\\PailServiceProvider"
+ ]
+ },
+ "branch-alias": {
+ "dev-main": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Laravel\\Pail\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ },
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "Easily delve into your Laravel application's log files directly from the command line.",
+ "homepage": "https://github.com/laravel/pail",
+ "keywords": [
+ "dev",
+ "laravel",
+ "logs",
+ "php",
+ "tail"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/pail/issues",
+ "source": "https://github.com/laravel/pail"
+ },
+ "time": "2026-02-09T13:44:54+00:00"
+ },
+ {
+ "name": "laravel/pao",
+ "version": "v1.0.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/pao.git",
+ "reference": "02f62a64c2b60af44a418ee490fee193590d8269"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/pao/zipball/02f62a64c2b60af44a418ee490fee193590d8269",
+ "reference": "02f62a64c2b60af44a418ee490fee193590d8269",
+ "shasum": ""
+ },
+ "require": {
+ "laravel/agent-detector": "^2.0.0",
+ "php": "^8.3"
+ },
+ "conflict": {
+ "laravel/framework": "<12.0.0",
+ "nunomaduro/collision": "<8.9.3",
+ "pestphp/pest": "<4.6.3 || >=6.0.0",
+ "phpunit/phpunit": "<12.5.23 || >=13.0.0 <13.1.7 || >=14.0.0"
+ },
+ "require-dev": {
+ "brianium/paratest": "^7.20.0",
+ "laravel/pint": "^1.29.1",
+ "orchestra/testbench": "^10.11.0 || ^11.1.0",
+ "pestphp/pest": "^4.6.3 || ^5.0.0",
+ "pestphp/pest-plugin-type-coverage": "^4.0.4 || ^5.0.0",
+ "phpstan/phpstan": "^2.1.51",
+ "rector/rector": "^2.4.2",
+ "symfony/process": "^7.4.8 || ^8.1.0",
+ "symfony/var-dumper": "^7.4.8 || ^8.0.8"
+ },
+ "type": "library",
+ "extra": {
+ "pest": {
+ "plugins": [
+ "Laravel\\Pao\\Drivers\\Pest\\Plugin"
+ ]
+ },
+ "laravel": {
+ "providers": [
+ "Laravel\\Pao\\Laravel\\ServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Autoload.php"
+ ],
+ "psr-4": {
+ "Laravel\\Pao\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ }
+ ],
+ "description": "Agent-optimized output for PHP testing tools",
+ "keywords": [
+ "Agent",
+ "PHPStan",
+ "ai",
+ "dev",
+ "paratest",
+ "pest",
+ "php",
+ "phpunit",
+ "testing"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/pao/issues",
+ "source": "https://github.com/laravel/pao"
+ },
+ "time": "2026-04-27T22:37:26+00:00"
+ },
+ {
+ "name": "laravel/pint",
+ "version": "v1.29.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/pint.git",
+ "reference": "0770e9b7fafd50d4586881d456d6eb41c9247a80"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/pint/zipball/0770e9b7fafd50d4586881d456d6eb41c9247a80",
+ "reference": "0770e9b7fafd50d4586881d456d6eb41c9247a80",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "ext-tokenizer": "*",
+ "ext-xml": "*",
+ "php": "^8.2.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.95.1",
+ "illuminate/view": "^12.56.0",
+ "larastan/larastan": "^3.9.6",
+ "laravel-zero/framework": "^12.1.0",
+ "mockery/mockery": "^1.6.12",
+ "nunomaduro/termwind": "^2.4.0",
+ "pestphp/pest": "^3.8.6",
+ "shipfastlabs/agent-detector": "^1.1.3"
+ },
+ "bin": [
+ "builds/pint"
+ ],
+ "type": "project",
+ "autoload": {
+ "psr-4": {
+ "App\\": "app/",
+ "Database\\Seeders\\": "database/seeders/",
+ "Database\\Factories\\": "database/factories/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "An opinionated code formatter for PHP.",
+ "homepage": "https://laravel.com",
+ "keywords": [
+ "dev",
+ "format",
+ "formatter",
+ "lint",
+ "linter",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/pint/issues",
+ "source": "https://github.com/laravel/pint"
+ },
+ "time": "2026-04-20T15:26:14+00:00"
+ },
+ {
+ "name": "mockery/mockery",
+ "version": "1.6.12",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/mockery/mockery.git",
+ "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
+ "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
+ "shasum": ""
+ },
+ "require": {
+ "hamcrest/hamcrest-php": "^2.0.1",
+ "lib-pcre": ">=7.0",
+ "php": ">=7.3"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<8.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5 || ^9.6.17",
+ "symplify/easy-coding-standard": "^12.1.14"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "library/helpers.php",
+ "library/Mockery.php"
+ ],
+ "psr-4": {
+ "Mockery\\": "library/Mockery"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Pádraic Brady",
+ "email": "padraic.brady@gmail.com",
+ "homepage": "https://github.com/padraic",
+ "role": "Author"
+ },
+ {
+ "name": "Dave Marshall",
+ "email": "dave.marshall@atstsolutions.co.uk",
+ "homepage": "https://davedevelopment.co.uk",
+ "role": "Developer"
+ },
+ {
+ "name": "Nathanael Esayeas",
+ "email": "nathanael.esayeas@protonmail.com",
+ "homepage": "https://github.com/ghostwriter",
+ "role": "Lead Developer"
+ }
+ ],
+ "description": "Mockery is a simple yet flexible PHP mock object framework",
+ "homepage": "https://github.com/mockery/mockery",
+ "keywords": [
+ "BDD",
+ "TDD",
+ "library",
+ "mock",
+ "mock objects",
+ "mockery",
+ "stub",
+ "test",
+ "test double",
+ "testing"
+ ],
+ "support": {
+ "docs": "https://docs.mockery.io/",
+ "issues": "https://github.com/mockery/mockery/issues",
+ "rss": "https://github.com/mockery/mockery/releases.atom",
+ "security": "https://github.com/mockery/mockery/security/advisories",
+ "source": "https://github.com/mockery/mockery"
+ },
+ "time": "2024-05-16T03:13:13+00:00"
+ },
+ {
+ "name": "myclabs/deep-copy",
+ "version": "1.13.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/myclabs/DeepCopy.git",
+ "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
+ "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "conflict": {
+ "doctrine/collections": "<1.6.8",
+ "doctrine/common": "<2.13.3 || >=3 <3.2.2"
+ },
+ "require-dev": {
+ "doctrine/collections": "^1.6.8",
+ "doctrine/common": "^2.13.3 || ^3.2.2",
+ "phpspec/prophecy": "^1.10",
+ "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/DeepCopy/deep_copy.php"
+ ],
+ "psr-4": {
+ "DeepCopy\\": "src/DeepCopy/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Create deep copies (clones) of your objects",
+ "keywords": [
+ "clone",
+ "copy",
+ "duplicate",
+ "object",
+ "object graph"
+ ],
+ "support": {
+ "issues": "https://github.com/myclabs/DeepCopy/issues",
+ "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
+ },
+ "funding": [
+ {
+ "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-08-01T08:46:24+00:00"
+ },
+ {
+ "name": "nunomaduro/collision",
+ "version": "v8.9.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nunomaduro/collision.git",
+ "reference": "716af8f95a470e9094cfca09ed897b023be191a5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nunomaduro/collision/zipball/716af8f95a470e9094cfca09ed897b023be191a5",
+ "reference": "716af8f95a470e9094cfca09ed897b023be191a5",
+ "shasum": ""
+ },
+ "require": {
+ "filp/whoops": "^2.18.4",
+ "nunomaduro/termwind": "^2.4.0",
+ "php": "^8.2.0",
+ "symfony/console": "^7.4.8 || ^8.0.8"
+ },
+ "conflict": {
+ "laravel/framework": "<11.48.0 || >=14.0.0",
+ "phpunit/phpunit": "<11.5.50 || >=14.0.0"
+ },
+ "require-dev": {
+ "brianium/paratest": "^7.8.5",
+ "larastan/larastan": "^3.9.6",
+ "laravel/framework": "^11.48.0 || ^12.56.0 || ^13.5.0",
+ "laravel/pint": "^1.29.1",
+ "orchestra/testbench-core": "^9.12.0 || ^10.12.1 || ^11.2.1",
+ "pestphp/pest": "^3.8.5 || ^4.4.3 || ^5.0.0",
+ "sebastian/environment": "^7.2.1 || ^8.0.4 || ^9.3.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
+ ]
+ },
+ "branch-alias": {
+ "dev-8.x": "8.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "./src/Adapters/Phpunit/Autoload.php"
+ ],
+ "psr-4": {
+ "NunoMaduro\\Collision\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "Cli error handling for console/command-line PHP applications.",
+ "keywords": [
+ "artisan",
+ "cli",
+ "command-line",
+ "console",
+ "dev",
+ "error",
+ "handling",
+ "laravel",
+ "laravel-zero",
+ "php",
+ "symfony"
+ ],
+ "support": {
+ "issues": "https://github.com/nunomaduro/collision/issues",
+ "source": "https://github.com/nunomaduro/collision"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/paypalme/enunomaduro",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/nunomaduro",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/nunomaduro",
+ "type": "patreon"
+ }
+ ],
+ "time": "2026-04-21T14:04:20+00:00"
+ },
+ {
+ "name": "phar-io/manifest",
+ "version": "2.0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/manifest.git",
+ "reference": "54750ef60c58e43759730615a392c31c80e23176"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
+ "reference": "54750ef60c58e43759730615a392c31c80e23176",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "ext-phar": "*",
+ "ext-xmlwriter": "*",
+ "phar-io/version": "^3.0.1",
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Heuer",
+ "email": "sebastian@phpeople.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
+ "support": {
+ "issues": "https://github.com/phar-io/manifest/issues",
+ "source": "https://github.com/phar-io/manifest/tree/2.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/theseer",
+ "type": "github"
+ }
+ ],
+ "time": "2024-03-03T12:33:53+00:00"
+ },
+ {
+ "name": "phar-io/version",
+ "version": "3.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/version.git",
+ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Heuer",
+ "email": "sebastian@phpeople.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "Library for handling version information and constraints",
+ "support": {
+ "issues": "https://github.com/phar-io/version/issues",
+ "source": "https://github.com/phar-io/version/tree/3.2.1"
+ },
+ "time": "2022-02-21T01:04:05+00:00"
+ },
+ {
+ "name": "phpunit/php-code-coverage",
+ "version": "12.5.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
+ "reference": "876099a072646c7745f673d7aeab5382c4439691"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/876099a072646c7745f673d7aeab5382c4439691",
+ "reference": "876099a072646c7745f673d7aeab5382c4439691",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "ext-xmlwriter": "*",
+ "nikic/php-parser": "^5.7.0",
+ "php": ">=8.3",
+ "phpunit/php-text-template": "^5.0",
+ "sebastian/complexity": "^5.0",
+ "sebastian/environment": "^8.0.3",
+ "sebastian/lines-of-code": "^4.0",
+ "sebastian/version": "^6.0",
+ "theseer/tokenizer": "^2.0.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.5.1"
+ },
+ "suggest": {
+ "ext-pcov": "PHP extension that provides line coverage",
+ "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "12.5.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
+ "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
+ "keywords": [
+ "coverage",
+ "testing",
+ "xunit"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
+ "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.5.6"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-15T08:23:17+00:00"
+ },
+ {
+ "name": "phpunit/php-file-iterator",
+ "version": "6.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
+ "reference": "3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5",
+ "reference": "3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "FilterIterator implementation that filters files based on a list of suffixes.",
+ "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
+ "keywords": [
+ "filesystem",
+ "iterator"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
+ "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/6.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpunit/php-file-iterator",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-02-02T14:04:18+00:00"
+ },
+ {
+ "name": "phpunit/php-invoker",
+ "version": "6.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-invoker.git",
+ "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406",
+ "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.3"
+ },
+ "require-dev": {
+ "ext-pcntl": "*",
+ "phpunit/phpunit": "^12.0"
+ },
+ "suggest": {
+ "ext-pcntl": "*"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Invoke callables with a timeout",
+ "homepage": "https://github.com/sebastianbergmann/php-invoker/",
+ "keywords": [
+ "process"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
+ "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-invoker/tree/6.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2025-02-07T04:58:58+00:00"
+ },
+ {
+ "name": "phpunit/php-text-template",
+ "version": "5.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-text-template.git",
+ "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53",
+ "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "5.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Simple template engine.",
+ "homepage": "https://github.com/sebastianbergmann/php-text-template/",
+ "keywords": [
+ "template"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
+ "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-text-template/tree/5.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2025-02-07T04:59:16+00:00"
+ },
+ {
+ "name": "phpunit/php-timer",
+ "version": "8.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-timer.git",
+ "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
+ "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "8.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Utility class for timing",
+ "homepage": "https://github.com/sebastianbergmann/php-timer/",
+ "keywords": [
+ "timer"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-timer/issues",
+ "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-timer/tree/8.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2025-02-07T04:59:38+00:00"
+ },
+ {
+ "name": "phpunit/phpunit",
+ "version": "12.5.25",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/phpunit.git",
+ "reference": "792c2980442dfce319226b88fa845b8b6de3b333"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/792c2980442dfce319226b88fa845b8b6de3b333",
+ "reference": "792c2980442dfce319226b88fa845b8b6de3b333",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-xml": "*",
+ "ext-xmlwriter": "*",
+ "myclabs/deep-copy": "^1.13.4",
+ "phar-io/manifest": "^2.0.4",
+ "phar-io/version": "^3.2.1",
+ "php": ">=8.3",
+ "phpunit/php-code-coverage": "^12.5.6",
+ "phpunit/php-file-iterator": "^6.0.1",
+ "phpunit/php-invoker": "^6.0.0",
+ "phpunit/php-text-template": "^5.0.0",
+ "phpunit/php-timer": "^8.0.0",
+ "sebastian/cli-parser": "^4.2.0",
+ "sebastian/comparator": "^7.1.6",
+ "sebastian/diff": "^7.0.0",
+ "sebastian/environment": "^8.1.0",
+ "sebastian/exporter": "^7.0.2",
+ "sebastian/global-state": "^8.0.2",
+ "sebastian/object-enumerator": "^7.0.0",
+ "sebastian/recursion-context": "^7.0.1",
+ "sebastian/type": "^6.0.3",
+ "sebastian/version": "^6.0.0",
+ "staabm/side-effects-detector": "^1.0.5"
+ },
+ "bin": [
+ "phpunit"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "12.5-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Framework/Assert/Functions.php"
+ ],
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "The PHP Unit Testing framework.",
+ "homepage": "https://phpunit.de/",
+ "keywords": [
+ "phpunit",
+ "testing",
+ "xunit"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/phpunit/issues",
+ "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/12.5.25"
+ },
+ "funding": [
+ {
+ "url": "https://phpunit.de/sponsoring.html",
+ "type": "other"
+ }
+ ],
+ "time": "2026-05-13T03:56:57+00:00"
+ },
+ {
+ "name": "sebastian/cli-parser",
+ "version": "4.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/cli-parser.git",
+ "reference": "90f41072d220e5c40df6e8635f5dafba2d9d4d04"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/90f41072d220e5c40df6e8635f5dafba2d9d4d04",
+ "reference": "90f41072d220e5c40df6e8635f5dafba2d9d4d04",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "4.2-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for parsing CLI options",
+ "homepage": "https://github.com/sebastianbergmann/cli-parser",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
+ "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
+ "source": "https://github.com/sebastianbergmann/cli-parser/tree/4.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/cli-parser",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-09-14T09:36:45+00:00"
+ },
+ {
+ "name": "sebastian/comparator",
+ "version": "7.1.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/comparator.git",
+ "reference": "c769009dee98f494e0edc3fd4f4087501688f11e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/c769009dee98f494e0edc3fd4f4087501688f11e",
+ "reference": "c769009dee98f494e0edc3fd4f4087501688f11e",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-mbstring": "*",
+ "php": ">=8.3",
+ "sebastian/diff": "^7.0",
+ "sebastian/exporter": "^7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.2"
+ },
+ "suggest": {
+ "ext-bcmath": "For comparing BcMath\\Number objects"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "7.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Volker Dusch",
+ "email": "github@wallbash.com"
+ },
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@2bepublished.at"
+ }
+ ],
+ "description": "Provides the functionality to compare PHP values for equality",
+ "homepage": "https://github.com/sebastianbergmann/comparator",
+ "keywords": [
+ "comparator",
+ "compare",
+ "equality"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/comparator/issues",
+ "security": "https://github.com/sebastianbergmann/comparator/security/policy",
+ "source": "https://github.com/sebastianbergmann/comparator/tree/7.1.6"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-14T08:23:15+00:00"
+ },
+ {
+ "name": "sebastian/complexity",
+ "version": "5.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/complexity.git",
+ "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb",
+ "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb",
+ "shasum": ""
+ },
+ "require": {
+ "nikic/php-parser": "^5.0",
+ "php": ">=8.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "5.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for calculating the complexity of PHP code units",
+ "homepage": "https://github.com/sebastianbergmann/complexity",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/complexity/issues",
+ "security": "https://github.com/sebastianbergmann/complexity/security/policy",
+ "source": "https://github.com/sebastianbergmann/complexity/tree/5.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2025-02-07T04:55:25+00:00"
+ },
+ {
+ "name": "sebastian/diff",
+ "version": "7.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/diff.git",
+ "reference": "7ab1ea946c012266ca32390913653d844ecd085f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f",
+ "reference": "7ab1ea946c012266ca32390913653d844ecd085f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.0",
+ "symfony/process": "^7.2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "7.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Kore Nordmann",
+ "email": "mail@kore-nordmann.de"
+ }
+ ],
+ "description": "Diff implementation",
+ "homepage": "https://github.com/sebastianbergmann/diff",
+ "keywords": [
+ "diff",
+ "udiff",
+ "unidiff",
+ "unified diff"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/diff/issues",
+ "security": "https://github.com/sebastianbergmann/diff/security/policy",
+ "source": "https://github.com/sebastianbergmann/diff/tree/7.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2025-02-07T04:55:46+00:00"
+ },
+ {
+ "name": "sebastian/environment",
+ "version": "8.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/environment.git",
+ "reference": "b121608b28a13f721e76ffbbd386d08eff58f3f6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/b121608b28a13f721e76ffbbd386d08eff58f3f6",
+ "reference": "b121608b28a13f721e76ffbbd386d08eff58f3f6",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.0"
+ },
+ "suggest": {
+ "ext-posix": "*"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "8.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Provides functionality to handle HHVM/PHP environments",
+ "homepage": "https://github.com/sebastianbergmann/environment",
+ "keywords": [
+ "Xdebug",
+ "environment",
+ "hhvm"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/environment/issues",
+ "security": "https://github.com/sebastianbergmann/environment/security/policy",
+ "source": "https://github.com/sebastianbergmann/environment/tree/8.1.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-15T12:13:01+00:00"
+ },
+ {
+ "name": "sebastian/exporter",
+ "version": "7.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/exporter.git",
+ "reference": "016951ae10980765e4e7aee491eb288c64e505b7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/016951ae10980765e4e7aee491eb288c64e505b7",
+ "reference": "016951ae10980765e4e7aee491eb288c64e505b7",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "php": ">=8.3",
+ "sebastian/recursion-context": "^7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "7.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Volker Dusch",
+ "email": "github@wallbash.com"
+ },
+ {
+ "name": "Adam Harvey",
+ "email": "aharvey@php.net"
+ },
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ }
+ ],
+ "description": "Provides the functionality to export PHP variables for visualization",
+ "homepage": "https://www.github.com/sebastianbergmann/exporter",
+ "keywords": [
+ "export",
+ "exporter"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/exporter/issues",
+ "security": "https://github.com/sebastianbergmann/exporter/security/policy",
+ "source": "https://github.com/sebastianbergmann/exporter/tree/7.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-09-24T06:16:11+00:00"
+ },
+ {
+ "name": "sebastian/global-state",
+ "version": "8.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/global-state.git",
+ "reference": "ef1377171613d09edd25b7816f05be8313f9115d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/ef1377171613d09edd25b7816f05be8313f9115d",
+ "reference": "ef1377171613d09edd25b7816f05be8313f9115d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.3",
+ "sebastian/object-reflector": "^5.0",
+ "sebastian/recursion-context": "^7.0"
+ },
+ "require-dev": {
+ "ext-dom": "*",
+ "phpunit/phpunit": "^12.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "8.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Snapshotting of global state",
+ "homepage": "https://www.github.com/sebastianbergmann/global-state",
+ "keywords": [
+ "global state"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/global-state/issues",
+ "security": "https://github.com/sebastianbergmann/global-state/security/policy",
+ "source": "https://github.com/sebastianbergmann/global-state/tree/8.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-08-29T11:29:25+00:00"
+ },
+ {
+ "name": "sebastian/lines-of-code",
+ "version": "4.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/lines-of-code.git",
+ "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f",
+ "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f",
+ "shasum": ""
+ },
+ "require": {
+ "nikic/php-parser": "^5.0",
+ "php": ">=8.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "4.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for counting the lines of code in PHP source code",
+ "homepage": "https://github.com/sebastianbergmann/lines-of-code",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
+ "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
+ "source": "https://github.com/sebastianbergmann/lines-of-code/tree/4.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2025-02-07T04:57:28+00:00"
+ },
+ {
+ "name": "sebastian/object-enumerator",
+ "version": "7.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/object-enumerator.git",
+ "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894",
+ "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.3",
+ "sebastian/object-reflector": "^5.0",
+ "sebastian/recursion-context": "^7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "7.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Traverses array structures and object graphs to enumerate all referenced objects",
+ "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
+ "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
+ "source": "https://github.com/sebastianbergmann/object-enumerator/tree/7.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2025-02-07T04:57:48+00:00"
+ },
+ {
+ "name": "sebastian/object-reflector",
+ "version": "5.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/object-reflector.git",
+ "reference": "4bfa827c969c98be1e527abd576533293c634f6a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a",
+ "reference": "4bfa827c969c98be1e527abd576533293c634f6a",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "5.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Allows reflection of object attributes, including inherited and non-public ones",
+ "homepage": "https://github.com/sebastianbergmann/object-reflector/",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
+ "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
+ "source": "https://github.com/sebastianbergmann/object-reflector/tree/5.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2025-02-07T04:58:17+00:00"
+ },
+ {
+ "name": "sebastian/recursion-context",
+ "version": "7.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/recursion-context.git",
+ "reference": "0b01998a7d5b1f122911a66bebcb8d46f0c82d8c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/0b01998a7d5b1f122911a66bebcb8d46f0c82d8c",
+ "reference": "0b01998a7d5b1f122911a66bebcb8d46f0c82d8c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "7.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Adam Harvey",
+ "email": "aharvey@php.net"
+ }
+ ],
+ "description": "Provides functionality to recursively process PHP variables",
+ "homepage": "https://github.com/sebastianbergmann/recursion-context",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
+ "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
+ "source": "https://github.com/sebastianbergmann/recursion-context/tree/7.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-08-13T04:44:59+00:00"
+ },
+ {
+ "name": "sebastian/type",
+ "version": "6.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/type.git",
+ "reference": "e549163b9760b8f71f191651d22acf32d56d6d4d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/e549163b9760b8f71f191651d22acf32d56d6d4d",
+ "reference": "e549163b9760b8f71f191651d22acf32d56d6d4d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^12.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Collection of value objects that represent the types of the PHP type system",
+ "homepage": "https://github.com/sebastianbergmann/type",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/type/issues",
+ "security": "https://github.com/sebastianbergmann/type/security/policy",
+ "source": "https://github.com/sebastianbergmann/type/tree/6.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/type",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-08-09T06:57:12+00:00"
+ },
+ {
+ "name": "sebastian/version",
+ "version": "6.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/version.git",
+ "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c",
+ "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.3"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library that helps with managing the version number of Git-hosted PHP projects",
+ "homepage": "https://github.com/sebastianbergmann/version",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/version/issues",
+ "security": "https://github.com/sebastianbergmann/version/security/policy",
+ "source": "https://github.com/sebastianbergmann/version/tree/6.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2025-02-07T05:00:38+00:00"
+ },
+ {
+ "name": "staabm/side-effects-detector",
+ "version": "1.0.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/staabm/side-effects-detector.git",
+ "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
+ "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
+ "shasum": ""
+ },
+ "require": {
+ "ext-tokenizer": "*",
+ "php": "^7.4 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/extension-installer": "^1.4.3",
+ "phpstan/phpstan": "^1.12.6",
+ "phpunit/phpunit": "^9.6.21",
+ "symfony/var-dumper": "^5.4.43",
+ "tomasvotruba/type-coverage": "1.0.0",
+ "tomasvotruba/unused-public": "1.0.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "lib/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "A static analysis tool to detect side effects in PHP code",
+ "keywords": [
+ "static analysis"
+ ],
+ "support": {
+ "issues": "https://github.com/staabm/side-effects-detector/issues",
+ "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/staabm",
+ "type": "github"
+ }
+ ],
+ "time": "2024-10-20T05:08:20+00:00"
+ },
+ {
+ "name": "theseer/tokenizer",
+ "version": "2.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/theseer/tokenizer.git",
+ "reference": "7989e43bf381af0eac72e4f0ca5bcbfa81658be4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/7989e43bf381af0eac72e4f0ca5bcbfa81658be4",
+ "reference": "7989e43bf381af0eac72e4f0ca5bcbfa81658be4",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-tokenizer": "*",
+ "ext-xmlwriter": "*",
+ "php": "^8.1"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
+ "support": {
+ "issues": "https://github.com/theseer/tokenizer/issues",
+ "source": "https://github.com/theseer/tokenizer/tree/2.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/theseer",
+ "type": "github"
+ }
+ ],
+ "time": "2025-12-08T11:19:18+00:00"
+ }
+ ],
+ "aliases": [],
+ "minimum-stability": "stable",
+ "stability-flags": {},
+ "prefer-stable": true,
+ "prefer-lowest": false,
+ "platform": {
+ "php": "^8.3"
+ },
+ "platform-dev": {},
+ "plugin-api-version": "2.9.0"
+}
diff --git a/composer.phar b/composer.phar
new file mode 100755
index 0000000000000000000000000000000000000000..212c0c3d0a719dad1956e1ac5819576a67460a5f
GIT binary patch
literal 3377204
zcmdqK34EMY)jwYL682RTfoU6<1d>ck3x#weP0}{dHX%t%p)FxD^CX#eG81NL8=!!Q
zQe+bZk$vAmK?DH-0c8;sWZy(lWD_@3luh}c@4e^TXMd80@curZf8SS5X6Cuyd(OG%
zo_p@O%QInIqFgK_x-+?im0J}X=o_e*J`4X%>|GJtJJ#8kDaLv-St~|#AXzBI@;$M}
zeE&ecXcg+{2|QGls*WwpWQ(zev{mR&=5n#=xupK{Ao-&%ZOz29_;+x=kj}(r=X-lI
z$y`1*eMMb2|9w!=%BJhO)uVWNPQDN;^;xl=ayA=FR*?cNlveGg7grB?frBc2hQk6thh?S_Q
zNF-tntMZw2tf8$jmP(e3nOtwIKvmP@J;_os8?y?9e1X(r6=Hp*(m=63k?75o`pVsP
zseFHe{-?BL|B)#c%T_V5@BULNGCi>>YfXtHAile@c~V!pDxMrj#j9g`?FEgOtU}kS
zWT7gP%XIZxCG}&Sl}mPKt*%ry6R)m`&1sq6+1%c>xM6-vQ$uHS*X-8T`OOUrBN0-`
zRG-z=J=m4DdXnXADGH}Lc5DUO3(T&v3W`-ol`L3QWFq_(vt1L5Pp+F-H)-EE{WWt&
zyjn^t1QMbsLikvyiA}7YrfOOnv$E8Fx>^+MSzXAKtg4RArsno`0zNER$Wc4gt45hV
zBc`j2^(O~a6OpAjTV{2im5UY1ITRuD(d~gh$Vk)0x_DjNytc09*7;m}P=$*I(qt~E
zt|mstNJ7M@l^hL$Z}E*+s#qx>n@H9f8_bsr=vQ^rlD;a}R;;a1#xO3GO%{t?)|yPQ
zRIG}(^(70o3awOMJ{Bitm&M84=%<*m9hh`K85T)cXF6uAU>#k~6s%$_Lsp)L3hH9b
z%662|+og&5f(6Z>ixZQv)nvf=aw%3@o6ZzrY_+OB>MFTdsW2Ez_9ipAx_GQE#=6rD
zM|_v6CXpUV9PnOW-=7@7A60SDdmVt{^awK-i{lIGGp+}eCz5aC(<&;uy5=>^@9b)9
zUC`Dtzq!4tdRlDO%&jUO`p1|t|J!iPnC-@l8MDEdt?0i}NYz81$LvY}D;83TM(KzR
z=~bCxzA%_*D5o=}#(b_P(@Reed}qrsWA>`rcm?R9dk_5K)f=Grm@(t%e-Qxr0t(+y
zrwfB_z5kozr0}HB!Y#eIe8Eb0SgA4@_n>eEu#Sy17-;Xr4<8;Htc`qfCYcQa`}(FD
z40K&Ab-sY@9m-h{%BLG^6wo{ND@_!XeS9e8QXYhrsOY<)#sS4k{hoRaXppOVf$fQo?5)WF~M6iH2^n
zfBpb~!?;aA|4{!;)4*|Gl>$&m^<`FB4v4wT1L)+x?ECwndC&%`7y=LHY@>w$&CYz;
zG-YKN53^|)bTIHtLYD_k?)}u`!hp{dLti(v=+l4v)lxwr%Xjw^CrXnw
zVCB+QE;Z;tdU1kA0zLJ@Z@nQ%;qsLG2OQ;(+D(@S{q^RX+#uzBolZDu?6XoU+p@_L
zf`xYL=%N#hj0fHSD586OG`%EXp~`8bD5IbZ%z<*;<{AZbtGDJ~E+|!D%Av9pt{`sd
zEF?1}H1lHS1a$k<)DHw>uW$@c6aA^Ixd6R!(xU@{P#cO+uxNa1E96&LDW}!neTW7E
zJ%8f!?+Z|<)$4Y4>a}?j4FUSK9go>wAVM|Llu43nbQ$iED>VjaN9`;B5{#NKd78*j
z!~r>4=VjI`=+wjyYXm3M;F{N1DM$I8d58erev=RWG-UZX->1uie(l}q`w17}a+H##
zvQra3W)BMb?(FZ~F9@NXx1-$KYtdxJ!No7O&|H9i^i{~cUB`4x=;`ssTOeS-1j0MpQU4jP&-*-RG#y=O*!y%hSAzmQBTE}O24
zfIj_9#|}~?U@S%vnx}wt&~!0nwd832-;+$K5cX(}KtXq{TX?$w1qiKx4ld?%PB4TP
zk5LDNA%l*+@21lQBfx-i#eCLEGz<(->O|#LP=2d!T^_VD^-6AE^
zP?Bh}QW+#xiU4|-X0vD{&}o$iZ6QFuur?4#<#XEd)M|qO8%OpGFwoyOO*5fj!fUYs
zU~0~lNwt@=$^iFgHGy99!|ZXw*8#(Tnos$*EQSgiG;_tIvInqtA5F5s9_a5boOhvM
zP97fSN)KEE2Uwszx9wvFjs1oJw}A3s8FUy@T}fnqf*Td|M+a_Yf`pmF0Bog{pz1kf
zaViKhUqJHDC~X1BL1%n?-E|^)%X%R%NETMA(Tc0E(ymH&W}g8%X41lgrIJHNR>>kt
zp(#l`)qIt!0WGcGYAdPcp!KT8aPD$@9}))i1iJHo4*RcQ&sZ<)4%N?04QPOQY3nAYQ-3-~g2d7!_U`qtH=jp6hc?G#+fy_9tT
z`r!sonv{fZObPG~ZTWl_dfbc$QqXH|y4JXb;dmHe%r0lLv`he~=^WpH{^tHGKNjhR
z|zaZHPc}jZrgQqz?8V2<7BbQttJPij1Q7r{O
zfH`kl4FlSA?Z&MFGaOBeGrD7<#sGc%*vk(UjNzyU82iqrEP5fCRin%X?AbuKnY`+M
z0yZqU2&}_Way`6-<_UD#4Y{=fGi4aP2s{ytE4A0ivqR9t@*^%4yx|x)ueH
zO~)B-b1L2z=F@6$Ud4km=)eVIe=MvGXQ1*Xe9@KWsI@1s>CB7ITW$L?Uvw1EkF?tb
z%6y6vAS~#!V~#M{b(%7}vxcE4v&+5BYf_epx9;Y~06pfGoo9%|(}s;m({S|iq6_v3
z?x>*KUv%Z4M1xKnH<@psyw|tWK%n(4
z+nNM}-%?Dm1Q~6v*FwluD7k$82c#dg1n4b4duX}x?gt*`%FaC|8dyI6uIVD=|~)HG?iKsU(kcd>v(X=m;+nE^M-Ap2F&V`@9Hg5n>}
zY#q<*bz}UtLURHdpV5>T4Dt{jmtbQoNUnjBJ7|!HiY;0&cd7bxZhO#I?%C}*!Hklw
zEm`VwbJj3ka|Zg%>-SwFD8AI7T`bW?Gxa>p+3l~O?bF!DgMNGZEtd#VBtNtu>PESd
z4G46}V~?2}dQ`)=dqEmDWub^(JnxBNfpo0Oxj9+7iv|I`{I1Vl5qY9G>GX1PJ&ObS
zV&Qiu2}qQBm1~7Bb2azIJnDh|?~M0e6{G_rOlWbc*q9u^qP8uX%N_lfZ3uL?Kkjd0
z>?j!t)J8+YH|)mRCi=+aBYz~EMRkxR$G9;po<)G3_rPOjxgm;?BfLHJ%D83(^r3<4
zuM$S~@~WtL6{SNcxjlf8hjJ3?Gemib*#P~qiG&hX-F1_fQR>Yb;;L8Vlp
zrGQ-&l+SS*m&;zyVo=bDznx+x%Dxsgr4kGC9mTBq2pxWnK|o(xbnP?38Ffi_d(5Fc
z3+3fe=J|H5chDtAR-PqgI(=nS+?Q}Hk|HmUOqq@d6MEl5LpB@w2hu=5mvY`PdmYKy^(cxvXG#UzW(wyQYY!y(-1=`
zHMAN>6CTe|66izsAGWpBw*E~RTARxaen?Uv00KSrj%RwMKAPscrE6(TV52}wD;mCz
z{T}EJ$F9FXK2A^rYg?%$5@R
z=quRL>XPu+oJ;{d{um$T<;ZG!&p-YtzU
z_XPry$SWjfXL8BHp!p2#ZbXlxO+f3nm}X*k-vrc@Vw5)821dIt+$#!ik&1u@`u)l0
zo7Di{IBcWwUn;HXm<()0(>TQ!(YLmG60ujN66GFApC+s>w|8dg^;Y%)tc^Z<+y_uZ(3}MdL
zO6wN%ALq{avTzd7M7+nv1#{r$8U}QOMNfZIV5WrYgqJm~G)q?06Ky>;zKy2o=nbG}
zY`7#Ncw_vL4Jf3%~N%<-~k
zyHzR|a-D+%G`r(%(Lj4?2hA4fw~O6p3S0GFxdaWFz;@aMp3gPWPT&yK=9VCyc5xX{j^V_%y+NdTt$*wUR@k~@;+L71pg20F9?WCzFEpz(e8
z>-ijzwB1gPJkPUHfKLA7!rcYZ7rq-YbqY$jv>bl^%rTyZv$QP$o?jeG<18=z5unx?}MDh9D>d|>!>3|
zd44wSZ^FalN6(Sd^6kc~fp@(hau`pGM|
zt`jao#Q_R!o3y-L^5_a}pr9YeCYUt1Z)|e110aV;n=l6GH!nZac
zZeP&L$FDG{tkC-B;}iv*AQ_syE@Q!
z7JPc1K<*u;W`@MjV>5OkcPY?s)NO9MlrOw8iqZ0E1Xoiz7el`^XST`vgtj{~)Sl0m
z7~SUUmpl&wJ#N?A&k^Z-I}tp5$#|OURTf|a9^0#10Q65|w%b+!ee)a}Ftt+muD?+r
zgT@234o#Z;NGwd#41tCpOQRvmfh0QZ
zGYDuy{db#00imAC(JqkW2JVTVyY0HUnPGKMIwA-b)7i>fK)kKD)H(*8`}eQkBuJqh!GkoHR;qED
zkDxmD(NLgQuRd^$Kn<5EI*r0e&$0Ibed+ac%ucT%RmIHFE=bytu4B`FnwG;7K_5M(
z!gS97D^`bLWK4%d=W+}Ldh?`P9}$W6@>ww-4oJ-FTh-r0o?;_6ZG;@$*f9*7iRgv`;Dwa&?lDv;CE89-)_|eDWQ_v%FG;p0%(9(
zg#tk@oRFF(K>k?952Sa1)8uJYhQrER84YyKr!Sl4@cSbNnx5r+kBfqSa%-PS4*GjC
z7uB_!3Fs{L`Jl%wI?6<}e*4tr^~`ZLo%vkpSuVPcIRV}7-yao3C1IRsBs)#%7?+Z
zoVfx0(b3<^3Qhz!*tgKAPO=!3+o;pP=0P|4=e=fuh(3lOme+$2AzP24eih1
zYYIC@(0k5!#w4qJUBWI#A!aEvX0@5IlBcRXivY|02pO>(Uk)O%sbF@u3%Yj3Y
zR_pXxrk}GlfbM$jvG0j^QGAKxwkrT%r622-1nvIx(m8_U8{h0=eCCrjJ=xy@>KiN~
z=qERQ#duWT&Jnv9=O@Z)X~+KB)s$CIlfl+NQ`X-53WpOTni3sR?-;N_!QyYp%z*{E
zqUu94ZK#RHBERCs>D^Z2fbR2yIrj@sKKr+enRIAcMWFT%;A;t+E9kv7OHU9y-};?h
z%*G27_Fx7DjjwDpV{25?N&+u!R|Nk0IVA)7as6}K3x5Yh=q&)s)vm8oS+oV{{XhK7
zEQI*BF4?S*%xd0af8(0^oWh8pTOBsNOSp^@n08RF3}}!)Fcj#RBft5vK>57C%}RoM
zsr?N!cOy^1L2r+Ze_eol{?;x=K&3wWBT(8n9RPaMBQIY$EEGB{<3`zx4FdGg@>Aha
zv0couVkzg5z|Y}Jb=!fy+jMlN@DrsT8`QD-cEp!75a{*~-~EvQMKzfX_27KpUX1Wu{nVreesJWf%MJP
zY#bM)+7tTsJvCpT?^m8`rh8FinvJ)pM3;!5?Jn3@!+=&VJ>xau#Wx?f%O)IiHv3zE
zEn|}cz5l2KKNYYjrPHPk+J{x>wN~Vt3UroRO^y!d6g_DE_Uj)PpeWC*fz*aBgLBW0
zS~}40pL=TfQl2eG0yvacoSi9kmnoJl*<5WM*Jz-hEqlyNaH86c(QJ@jcAlW;ZGBAL
za781Q=9Rl`oO5SrW`&-kw@?6#rUL!scZW+w!CQs3B91Z;9dyB|iEXka}hV2FH~V^GlSUO$>3a8Yhj;A|;f9Ij?a(C3f8
zccMU2vd`^#^$sI@FV!3D(?GYs`R>o8U}Z=_-l2r8S;{B2aASd9eO1#GDIfEdH|Iwa
zhggHE?91!|L4UEOy>Y=`w_TRoNR?kskpbEmbhDRsIy1CxcyQeR(KpY^QZ5_zks<>}
zSSLlp{MQK1Whp7!XN3#8ya!IkPU&bD6~zXsd$`6SAr!P
z%LUI??$w9tib1m*KeI+Err|rNVgaE8qXV@0NhKA}wt33pN+210-yvo?O86c1N|B${;Z{ByM~54!0CvyPGS!G4J@!?0c2nLGx7UeN!2
z6Tp$13TVRlv=ImL{%SK_A?Vf9rkjl~zD%^T9_$37bL+_kbZb~oMzh?=?GBpWWlJ;q
z2aCKguT)JlHOdXBLrhgXlL1}u$yR15Z(JbXJXdU?`}M&7>nt?rS?#+l5q$+W7Z>iJ
zZQGjnhq<*u|9!_rX0_P2Ge$`-F&HX7i~|hN9j~5XdTK~XPUEBGlRIgRgKqMzTUH9o
z!Tz7Lm7;|Zy(d`v|8+D4hK+%4bLK;)>fk2BjT$ArtwWsz0Sg<=)(D_GE^apNDVX^V
z$_dd{JvDB=&-wEu|4Y(0)*J%Tu)w}O_}f3TG<2>Rnk3O!N~z1&r>U`evYS^UG8
zE)M$Qdv~2A#WAY7iaV-YvGWGXVnE{`Z~RXwLwTez6#b_2g+!8Xl!IootXa?}-uZ!f
z9Ja!br+80~SEmUI3SgU{-+TTK=SWRx6mQW$wZ6^42I%F@Pa0zj0uY|*vQE0kj&4H)
z^PBM)0Q#2)>`R=`s$LEZKo2s-D4pYO0y-fv^ZUYoJgRgq*-xPZ-6WzQj-W@O0?_xa
z{rz_Z0z*J30|Ujv6x2VR2Yt{Fp8LMZ?nD+QzoeqVN0@ogOv`?j)C|iCt(mSIC}mQp
z`x