Merge all Go code from core/go-php into core/php, creating a dual-language repo (Go CLI + PHP framework). Module path: forge.lthn.ai/core/php. - PHP dev/build/deploy/QA commands (cmd_*.go) - FrankenPHP handler + bridge (handler.go, bridge.go) - Standalone binary entry point (cmd/core-php/) - Build/release configs (.core/) - Full test suite Co-Authored-By: Virgil <virgil@lethean.io>
15 lines
297 B
Go
15 lines
297 B
Go
// Package main provides the core-php binary — a standalone PHP/Laravel
|
|
// development tool with FrankenPHP embedding support.
|
|
package main
|
|
|
|
import (
|
|
php "forge.lthn.ai/core/php"
|
|
|
|
"forge.lthn.ai/core/cli/pkg/cli"
|
|
)
|
|
|
|
func main() {
|
|
cli.Main(
|
|
cli.WithCommands("php", php.AddPHPCommands),
|
|
)
|
|
}
|