Documentation
¶
Overview ¶
Package list builds a markdown inventory of PHP routes, files and classes.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ExpandFiles ¶
ExpandFiles resolves path arguments to a sorted list of PHP file paths. Path forms match Go's package patterns:
- "." or "dir": .php/.phpt files in that directory only (non-recursive)
- "./..." or "dir/...": that directory and all subdirectories
- "file.php": that file
When paths is empty, "." is used.
Types ¶
type Row ¶
type Row struct {
Route string // e.g. "GET /users/{id}", "@startup", or empty
Filename string // slash-separated path relative to the working directory
Classes string // comma-separated FQNs, or empty
}
Row is one markdown table row.
Click to show internal directories.
Click to hide internal directories.