behind / blucid-console
Extend lucid console commands.
Installs: 23
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
pkg:composer/behind/blucid-console
Requires
- symfony/console: ^3.1
- symfony/filesystem: ^3.1
- symfony/finder: ^3.1
- symfony/process: ^3.1
This package is not auto-updated.
Last update: 2025-10-20 19:05:39 UTC
README
Expanding Lucid console capabilities for Lucid Architecture.
Command Line Interface
The console ships with a command line interface called blucid that you can find in vendor/bin/blucid and use as
blucid make:model Video
blucid make:policy Post
blucid make:request UpdatePost
To be able to address the
blucidcli directly you need to have./vendor/binas part of your$PATH. To do that, put this in your shell profile (~/.bash_profile, ~/.zshrc, ~/bashrc)export PATH="$PATH:./vendor/bin"
Available Commands
- helpDisplays help for a command
- listLists commands
- make
- make:modelCreate a new resource Controller class in a service
- make:policyCreate a new Feature in a service
- make:requestCreate a new Job in a domain
 
- delete
- delete:modelDelete an existing Feature in a service
- delete:policyDelete an existing Job in a domain
- delete:requestDelete an existing Service
 
Commands Usage
Make
- make:model <model>
- make:policy <policy>
- make:request <request>
Delete
- delete:model <model>
- delete:policy <policy>
- delete:request <request>