Make Flux Pro optional

This commit is contained in:
Snider 2026-01-26 17:40:21 +00:00
parent dd43e075ee
commit 735153a804
2 changed files with 16 additions and 7 deletions

View file

@ -106,6 +106,21 @@ class Boot
| `host-uk/core-api` | REST API with scopes & webhooks | | `host-uk/core-api` | REST API with scopes & webhooks |
| `host-uk/core-mcp` | Model Context Protocol tools | | `host-uk/core-mcp` | Model Context Protocol tools |
## Flux Pro (Optional)
This template uses the free Flux UI components. If you have a Flux Pro license:
```bash
# Configure authentication
composer config http-basic.composer.fluxui.dev your-email your-license-key
# Add the repository
composer config repositories.flux-pro composer https://composer.fluxui.dev
# Install Flux Pro
composer require livewire/flux-pro
```
## Documentation ## Documentation
- [Core PHP Framework](https://github.com/host-uk/core-php) - [Core PHP Framework](https://github.com/host-uk/core-php)

View file

@ -9,7 +9,6 @@
"laravel/framework": "^12.0", "laravel/framework": "^12.0",
"laravel/tinker": "^2.10", "laravel/tinker": "^2.10",
"livewire/flux": "^2.0", "livewire/flux": "^2.0",
"livewire/flux-pro": "^2.0",
"livewire/livewire": "^3.0", "livewire/livewire": "^3.0",
"host-uk/core": "^1.0", "host-uk/core": "^1.0",
"host-uk/core-admin": "^1.0", "host-uk/core-admin": "^1.0",
@ -37,12 +36,7 @@
"Tests\\": "tests/" "Tests\\": "tests/"
} }
}, },
"repositories": [ "repositories": [],
{
"type": "composer",
"url": "https://composer.fluxui.dev"
}
],
"scripts": { "scripts": {
"post-autoload-dump": [ "post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",