Make Flux Pro optional
This commit is contained in:
parent
dd43e075ee
commit
735153a804
2 changed files with 16 additions and 7 deletions
15
README.md
15
README.md
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue