Dagger
Search

php-sdk

Runtime module for the PHP SDK

Installation

dagger install github.com/charjr/dagger/sdk/php@6839e3c5c508bec465ceec5afd3fb04ae644ad4a

Entrypoint

Return Type
PhpSdk !
Arguments
NameTypeDescription
sdkSourceDirDirectory Directory with the PHP SDK source code.
Example
dagger -m github.com/charjr/dagger/sdk/php@6839e3c5c508bec465ceec5afd3fb04ae644ad4a call \
func (m *myModule) example() *PhpSdk  {
	return dag.
			PhpSdk()
}
@function
def example() -> dag.PhpSdk:
	return (
		dag.php_sdk()
	)
@func()
example(): PhpSdk {
	return dag
		.phpSdk()
}

Types

PhpSdk 🔗

sourceDir() 🔗

Return Type
Directory !
Example
dagger -m github.com/charjr/dagger/sdk/php@6839e3c5c508bec465ceec5afd3fb04ae644ad4a call \
 source-dir
func (m *myModule) example() *Directory  {
	return dag.
			PhpSdk().
			SourceDir()
}
@function
def example() -> dagger.Directory:
	return (
		dag.php_sdk()
		.source_dir()
	)
@func()
example(): Directory {
	return dag
		.phpSdk()
		.sourceDir()
}

requiredPaths() 🔗

Return Type
[String ! ] !
Example
dagger -m github.com/charjr/dagger/sdk/php@6839e3c5c508bec465ceec5afd3fb04ae644ad4a call \
 required-paths
func (m *myModule) example(ctx context.Context) []string  {
	return dag.
			PhpSdk().
			RequiredPaths(ctx)
}
@function
async def example() -> List[str]:
	return await (
		dag.php_sdk()
		.required_paths()
	)
@func()
async example(): Promise<string[]> {
	return dag
		.phpSdk()
		.requiredPaths()
}

codegen() 🔗

Return Type
GeneratedCode !
Arguments
NameTypeDefault ValueDescription
modSourceModuleSource !-No description provided
introspectionJsonFile !-No description provided
Example
echo 'Custom types are not supported in shell examples'
func (m *myModule) example(modSource *ModuleSource, introspectionJson *File) *GeneratedCode  {
	return dag.
			PhpSdk().
			Codegen(modSource, introspectionJson)
}
@function
def example(mod_source: dag.ModuleSource, introspection_json: dagger.File) -> dag.GeneratedCode:
	return (
		dag.php_sdk()
		.codegen(mod_source, introspection_json)
	)
@func()
example(modSource: ModuleSource, introspectionJson: File): GeneratedCode {
	return dag
		.phpSdk()
		.codegen(modSource, introspectionJson)
}

codegenBase() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
modSourceModuleSource !-No description provided
introspectionJsonFile !-No description provided
Example
echo 'Custom types are not supported in shell examples'
func (m *myModule) example(modSource *ModuleSource, introspectionJson *File) *Container  {
	return dag.
			PhpSdk().
			CodegenBase(modSource, introspectionJson)
}
@function
def example(mod_source: dag.ModuleSource, introspection_json: dagger.File) -> dagger.Container:
	return (
		dag.php_sdk()
		.codegen_base(mod_source, introspection_json)
	)
@func()
example(modSource: ModuleSource, introspectionJson: File): Container {
	return dag
		.phpSdk()
		.codegenBase(modSource, introspectionJson)
}

moduleRuntime() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
modSourceModuleSource !-No description provided
introspectionJsonFile !-No description provided
Example
echo 'Custom types are not supported in shell examples'
func (m *myModule) example(modSource *ModuleSource, introspectionJson *File) *Container  {
	return dag.
			PhpSdk().
			ModuleRuntime(modSource, introspectionJson)
}
@function
def example(mod_source: dag.ModuleSource, introspection_json: dagger.File) -> dagger.Container:
	return (
		dag.php_sdk()
		.module_runtime(mod_source, introspection_json)
	)
@func()
example(modSource: ModuleSource, introspectionJson: File): Container {
	return dag
		.phpSdk()
		.moduleRuntime(modSource, introspectionJson)
}