Dockerfile from hostuk (FrankenPHP 1-php8.5), stripped scorer binary. Supervisor config simplified for lthn.io (no horizon/reverb). Octane + Predis installed. docker-compose.yml with Traefik labels, host.docker.internal for daemon/wallet/LNS access, file cache. TODO: Fix view namespace resolution inside container (localhost doesn't match Lethean $domains). Need to add localhost to Lethean $domains or test with proper Host header. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
64 lines
1.5 KiB
JSON
64 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://getcomposer.org/schema.json",
|
|
"name": "lthn/lthn.io",
|
|
"type": "project",
|
|
"description": "Lethean.io \u2014 TLD website and blockchain services",
|
|
"keywords": [
|
|
"lethean",
|
|
"blockchain",
|
|
"tld",
|
|
"explorer",
|
|
"dex"
|
|
],
|
|
"license": "EUPL-1.2",
|
|
"require": {
|
|
"php": "^8.4",
|
|
"guzzlehttp/guzzle": "^7.9",
|
|
"laravel/framework": "^12.0",
|
|
"laravel/octane": "^2.17",
|
|
"laravel/pennant": "^1.23",
|
|
"livewire/livewire": "^4.2",
|
|
"predis/predis": "^3.4"
|
|
},
|
|
"require-dev": {
|
|
"larastan/larastan": "^3.0",
|
|
"laravel/pint": "^1.18",
|
|
"pestphp/pest": "^3.7"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Mod\\": "app/Mod/",
|
|
"Website\\": "app/Website/",
|
|
"Core\\": "app/Core/",
|
|
"Core\\Website\\": "app/CoreWebsite/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "pint",
|
|
"analyse": "phpstan analyse",
|
|
"test": "pest"
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": []
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true,
|
|
"php-http/discovery": true
|
|
}
|
|
},
|
|
"repositories": [],
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|