phpcmd

package
v0.0.0-...-9c55465 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 10, 2024 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var PhpInfoCmd = &gcli.Command{
	Name: "info",
	Desc: "system info for php",
	Func: func(c *gcli.Command, args []string) error {
		cmd := cmdr.NewCmd("php", "-v")

		return cmd.Run()
	},
}

PhpInfoCmd instance

View Source
var PhpServeCmd = &gcli.Command{
	Name: "serve",
	Desc: "start an php development server",
	Func: func(c *gcli.Command, args []string) error {
		cmd := cmdr.NewCmd("php", "-v")

		return cmd.Run()
	},
}

PhpServeCmd instance

View Source
var PhpToolsCmd = &gcli.Command{
	Name: "php",
	Desc: "some php tools command",
	Subs: []*gcli.Command{
		PhpInfoCmd,
		PhpServeCmd,
	},
}

PhpToolsCmd instance

Functions

This section is empty.

Types

type PhpServeConf

type PhpServeConf struct {
	Root   string
	Entry  string
	PhpBin string
	Addr   string
}

PhpServeConf struct run: php -S 127.0.0.1:8080 -t web web/index.php

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL