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-04-24 23:44:15 +01:00
|
|
|
php "dappco.re/go/php/pkg/php"
|
2026-03-06 17:50:01 +00:00
|
|
|
|
2026-04-24 23:44:15 +01:00
|
|
|
"dappco.re/go/cli/pkg/cli"
|
2026-03-06 17:50:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
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
|
|
|
)
|
|
|
|
|
}
|