lthn.io/composer.json
Claude aebb9b3d5d
feat: CorePHP packages integrated — tenant, commerce, api
Symlinked core-api, php-commerce, php-tenant into app/Core/.
All migrations ran (50 tables). Tenant feature seeder ran.
Workspace 'Lethean CIC' created with admin user Charon and
'Lethean Registrar' namespace. SetupWorkspace artisan command
for repeatable provisioning.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-04 12:44:43 +01:00

84 lines
2.1 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",
"host-uk/core": "*",
"host-uk/core-api": "*",
"laravel/framework": "^12.0",
"laravel/octane": "^2.17",
"laravel/pennant": "^1.23",
"livewire/livewire": "^4.2",
"lthn/php-commerce": "*",
"lthn/php-tenant": "*",
"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
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [{
"name": "core-framework",
"type": "path",
"url": "/home/claude/Code/core/php-framework"
},{
"name": "core-tenant",
"type": "path",
"url": "/home/claude/Code/core/php-tenant"
},{
"name": "core-commerce",
"type": "path",
"url": "/home/claude/Code/core/php-commerce"
},{
"name": "core-api",
"type": "path",
"url": "/home/claude/Code/core/php-api"
}]
}