php/cmd/core-php/main.go
Snider 74ef3ec5e4
Some checks failed
CI / PHP 8.4 (push) Failing after 2m8s
CI / PHP 8.3 (push) Failing after 2m18s
refactor: move Go source files to pkg/php/
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>
2026-03-12 19:14:14 +00:00

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),
)
}