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>
16 lines
279 B
Go
16 lines
279 B
Go
// Package php provides PHP/Laravel development tools.
|
|
package php
|
|
|
|
import (
|
|
"embed"
|
|
|
|
"forge.lthn.ai/core/go-i18n"
|
|
)
|
|
|
|
//go:embed locales/*.json
|
|
var localeFS embed.FS
|
|
|
|
func init() {
|
|
// Register PHP translations with the i18n system
|
|
i18n.RegisterLocales(localeFS, "locales")
|
|
}
|