- Migrate module path: dappco.re/go/core/php -> dappco.re/go/php - Bump dappco.re/go/* deps to v0.8.0-alpha.1 in go.mod (any forge.lthn.ai/core/* paths migrated to canonical dappco.re/go/* form) - Update Go source imports across 21 .go files - Add tests/cli/php/Taskfile.yaml AX-10 scaffold (build/vet/test under default deps), per RFC-CORE-008-AGENT-EXPERIENCE.md §10 Co-Authored-By: Athena <athena@lthn.ai>
15 lines
297 B
Go
15 lines
297 B
Go
// Package main provides the core-php binary — a standalone PHP/Laravel
|
|
// development tool with FrankenPHP embedding support.
|
|
package main
|
|
|
|
import (
|
|
php "dappco.re/go/php/pkg/php"
|
|
|
|
"dappco.re/go/cli/pkg/cli"
|
|
)
|
|
|
|
func main() {
|
|
cli.Main(
|
|
cli.WithCommands("php", php.AddPHPRootCommands),
|
|
)
|
|
}
|