Dagger
Search

php-sdk-dev

No long description provided.

Installation

dagger install github.com/shykes/dagger/sdk/php/dev@e237a2ccb7abdaa2ec2720fb63ebcee7fb571b10

Entrypoint

Return Type
PhpSdkDev !
Arguments
NameTypeDefault ValueDescription
containerContainer nullNo description provided
Example
func (m *myModule) example() *PhpSdkDev  {
	return dag.
			PhpSdkDev()
}

Types

PhpSdkDev 🔗

The PHP SDK's development module.

test() 🔗

Run tests from source directory

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-Run tests from the given source directory
groupString nullOnly run tests in the given group
Example
func (m *myModule) example(source *Directory) *Container  {
	return dag.
			PhpSdkDev().
			Test(source)
}

lint() 🔗

Run linter in source directory

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
Example
func (m *myModule) example(source *Directory) *Container  {
	return dag.
			PhpSdkDev().
			Lint(source)
}

format() 🔗

Return diff from formatting source directory

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
Example
func (m *myModule) example(source *Directory) *Directory  {
	return dag.
			PhpSdkDev().
			Format(source)
}

formatStdout() 🔗

Return stdout from formatting source directory

Return Type
String !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
Example
func (m *myModule) example(ctx context.Context, source *Directory) string  {
	return dag.
			PhpSdkDev().
			FormatStdout(ctx, source)
}