Restructure for production embedding — all Go source now under pkg/php/ with locales embedded alongside. Entry point at cmd/core-php/ imports forge.lthn.ai/core/php/pkg/php. Prepares for Gin router frontend and native binary production deployment. Co-Authored-By: Virgil <virgil@lethean.io>
15 lines
309 B
Go
15 lines
309 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/pkg/php"
|
|
|
|
"forge.lthn.ai/core/cli/pkg/cli"
|
|
)
|
|
|
|
func main() {
|
|
cli.Main(
|
|
cli.WithCommands("php", php.AddPHPRootCommands),
|
|
)
|
|
}
|