2026-03-06 17:50:01 +00:00
|
|
|
// Package main provides the core-php binary — a standalone PHP/Laravel
|
|
|
|
|
// development tool with FrankenPHP embedding support.
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
2026-03-12 19:14:14 +00:00
|
|
|
php "forge.lthn.ai/core/php/pkg/php"
|
2026-03-06 17:50:01 +00:00
|
|
|
|
|
|
|
|
"forge.lthn.ai/core/cli/pkg/cli"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
cli.Main(
|
2026-03-09 18:47:55 +00:00
|
|
|
cli.WithCommands("php", php.AddPHPRootCommands),
|
2026-03-06 17:50:01 +00:00
|
|
|
)
|
|
|
|
|
}
|