php-sdk
when done add php to core/schema/sdk.go:L93Installation
dagger install github.com/carnage/dagger/sdk/php/runtime@b024c293d6342f45f01bc8e2a601f046b1b0cfcd
Entrypoint
Return Type
PhpSdk !
Arguments
Name | Type | Description |
---|---|---|
sdkSourceDir | Directory | Directory with the PHP SDK source code. |
Example
dagger -m github.com/carnage/dagger/sdk/php/runtime@b024c293d6342f45f01bc8e2a601f046b1b0cfcd 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/carnage/dagger/sdk/php/runtime@b024c293d6342f45f01bc8e2a601f046b1b0cfcd 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/carnage/dagger/sdk/php/runtime@b024c293d6342f45f01bc8e2a601f046b1b0cfcd 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()
}
container() 🔗
Return Type
Container !
Example
dagger -m github.com/carnage/dagger/sdk/php/runtime@b024c293d6342f45f01bc8e2a601f046b1b0cfcd call \
container
func (m *myModule) example() *Container {
return dag.
PhpSdk().
Container()
}
@function
def example() -> dagger.Container:
return (
dag.php_sdk()
.container()
)
@func()
example(): Container {
return dag
.phpSdk()
.container()
}
codegen() 🔗
Return Type
GeneratedCode !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
modSource | ModuleSource ! | - | No description provided |
introspectionJson | String ! | - | No description provided |
Example
echo 'Custom types are not supported in shell examples'
func (m *myModule) example(modSource *ModuleSource, introspectionJson string) *GeneratedCode {
return dag.
PhpSdk().
Codegen(modSource, introspectionJson)
}
@function
def example(mod_source: dag.ModuleSource, introspection_json: str) -> dag.GeneratedCode:
return (
dag.php_sdk()
.codegen(mod_source, introspection_json)
)
@func()
example(modSource: ModuleSource, introspectionJson: string): GeneratedCode {
return dag
.phpSdk()
.codegen(modSource, introspectionJson)
}
codegenBase() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
modSource | ModuleSource ! | - | No description provided |
introspectionJson | String ! | - | No description provided |
Example
echo 'Custom types are not supported in shell examples'
func (m *myModule) example(modSource *ModuleSource, introspectionJson string) *Container {
return dag.
PhpSdk().
CodegenBase(modSource, introspectionJson)
}
@function
def example(mod_source: dag.ModuleSource, introspection_json: str) -> dagger.Container:
return (
dag.php_sdk()
.codegen_base(mod_source, introspection_json)
)
@func()
example(modSource: ModuleSource, introspectionJson: string): Container {
return dag
.phpSdk()
.codegenBase(modSource, introspectionJson)
}
moduleRuntime() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
modSource | ModuleSource ! | - | No description provided |
introspectionJson | String ! | - | No description provided |
Example
echo 'Custom types are not supported in shell examples'
func (m *myModule) example(modSource *ModuleSource, introspectionJson string) *Container {
return dag.
PhpSdk().
ModuleRuntime(modSource, introspectionJson)
}
@function
def example(mod_source: dag.ModuleSource, introspection_json: str) -> dagger.Container:
return (
dag.php_sdk()
.module_runtime(mod_source, introspection_json)
)
@func()
example(modSource: ModuleSource, introspectionJson: string): Container {
return dag
.phpSdk()
.moduleRuntime(modSource, introspectionJson)
}