Add new PHP quality commands: - psalm: Psalm static analysis with auto-fix support - audit: Security audit for composer and npm dependencies - security: Filesystem security checks (.env exposure, permissions) - qa: Full QA pipeline with quick/standard/full stages - rector: Automated code refactoring with dry-run - infection: Mutation testing Split cmd/php/php.go (2k+ lines) into logical files: - php.go: Styles and command registration - php_dev.go: dev, logs, stop, status, ssl - php_build.go: build, serve, shell - php_quality.go: test, fmt, analyse, psalm, audit, security, qa, rector, infection - php_packages.go: packages link/unlink/update/list - php_deploy.go: deploy commands QA pipeline improvements: - Suppress tool output noise in pipeline mode - Show actionable "To fix:" suggestions with commands Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
499 B
Go
18 lines
499 B
Go
// Package build provides project build commands with auto-detection.
|
|
//
|
|
// Supports building:
|
|
// - Go projects (standard and cross-compilation)
|
|
// - Wails desktop applications
|
|
// - Docker images
|
|
// - LinuxKit VM images
|
|
// - Taskfile-based projects
|
|
//
|
|
// Configuration via .core/build.yaml or command-line flags.
|
|
package build
|
|
|
|
import "github.com/leaanthony/clir"
|
|
|
|
// AddCommands registers the 'build' command and all subcommands.
|
|
func AddCommands(app *clir.Cli) {
|
|
AddBuildCommand(app)
|
|
}
|