lthn.io/composer.json

85 lines
2.1 KiB
JSON
Raw Permalink Normal View History

{
"$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"
}]
}