feat: add console PHP SDK configuration

Add Console PHP SDK entry to the console platform SDK registry,
enabling SDK generation for the console PHP target.
This commit is contained in:
Prem Palanisamy
2026-02-19 10:54:21 +00:00
parent e902d3b6ad
commit e8bfee388c
2 changed files with 26 additions and 0 deletions
+21
View File
@@ -289,6 +289,27 @@ return [
'repoBranch' => 'main',
'changelog' => \realpath(__DIR__ . '/../../docs/sdks/agent-skills/CHANGELOG.md'),
],
[
'key' => 'php',
'name' => 'Console PHP',
'version' => '0.0.1',
'composerVendor' => 'appwrite',
'composerPackage' => 'sdk-for-console-php',
'url' => 'https://github.com/appwrite/sdk-for-console-php',
'package' => 'https://packagist.org/packages/appwrite/sdk-for-console-php',
'enabled' => true,
'beta' => false,
'dev' => false,
'hidden' => true,
'family' => APP_SDK_PLATFORM_CONSOLE,
'prism' => 'php',
'source' => \realpath(__DIR__ . '/../sdks/console-php'),
'gitUrl' => 'git@github.com:appwrite/sdk-for-console-php.git',
'gitRepoName' => 'sdk-for-console-php',
'gitUserName' => 'appwrite',
'gitBranch' => 'dev',
'changelog' => \realpath(__DIR__ . '/../../docs/sdks/console-php/CHANGELOG.md'),
],
],
],
+5
View File
@@ -0,0 +1,5 @@
# Changelog
## 0.0.1
- Initial release