Command Cheat Sheet

Quick reference for the most commonly used PhpHive commands.

Workspace Management

# Create new workspace
hive make:workspace

# List all workspaces
hive workspace:list

# Show workspace info
hive workspace:info <name>

Creating Apps & Packages

# Create Laravel app
hive make:app my-api --type=laravel

# Create Symfony app
hive make:app my-service --type=symfony

# Create Magento store
hive make:app my-shop --type=magento

# Create skeleton app
hive make:app my-app --type=skeleton

# Create package
hive make:package my-package

Dependency Management

Quality & Testing

Framework Commands

Development

Deployment

Turborepo

System & Maintenance

Common Options

All commands support these options:

β†’ See detailed documentationarrow-up-right

Aliases

Many commands have shorter aliases:

Workflow Examples

Starting a New Project

Daily Development

Before Committing

Deployment

Tips & Tricks

Use Tab Completion

PhpHive supports shell completion. Generate it with:

Target Specific Workspaces

Most commands accept --workspace or -w:

Run Commands in Parallel

Use Turborepo for parallel execution:

Check Command Help

Every command has detailed help:

Use Aliases for Speed

Preview Before Executing

Use JSON Output for Automation


Need more details? Check the full command reference.

Last updated