1
0
Fork 0
mirror of synced 2024-05-17 11:12:41 +12:00
appwrite/app/config/platforms.php

413 lines
17 KiB
PHP
Raw Normal View History

2020-01-22 03:39:42 +13:00
<?php
const APP_PLATFORM_SERVER = 'server';
2020-01-27 19:14:14 +13:00
const APP_PLATFORM_CLIENT = 'client';
2020-01-31 05:17:58 +13:00
const APP_PLATFORM_CONSOLE = 'console';
2020-01-28 10:50:41 +13:00
2020-01-22 03:39:42 +13:00
return [
2020-05-17 19:33:17 +12:00
APP_PLATFORM_CLIENT => [
'key' => APP_PLATFORM_CLIENT,
'name' => 'Client',
2020-08-01 06:24:41 +12:00
'description' => 'Client libraries for integrating with Appwrite to build client-based applications and websites. Read the [getting started for web](/docs/getting-started-for-web) or [getting started for Flutter](/docs/getting-started-for-flutter) tutorials to start building your first application.',
2020-01-22 03:39:42 +13:00
'enabled' => true,
'beta' => false,
2020-05-17 20:01:38 +12:00
'languages' => [ // TODO change key to 'sdks'
2020-01-22 03:39:42 +13:00
[
2020-05-17 19:33:17 +12:00
'key' => 'web',
2020-05-17 18:47:01 +12:00
'name' => 'Web',
2022-09-22 16:07:34 +12:00
'version' => '10.1.0',
2021-01-30 11:46:40 +13:00
'url' => 'https://github.com/appwrite/sdk-for-web',
2020-12-14 01:59:12 +13:00
'package' => 'https://www.npmjs.com/package/appwrite',
2020-01-22 03:39:42 +13:00
'enabled' => true,
'beta' => false,
2021-01-09 19:04:39 +13:00
'dev' => false,
2021-02-11 02:07:55 +13:00
'hidden' => false,
2020-01-29 02:16:33 +13:00
'family' => APP_PLATFORM_CLIENT,
'prism' => 'javascript',
2020-06-20 23:20:49 +12:00
'source' => \realpath(__DIR__ . '/../sdks/client-web'),
2021-01-30 11:46:40 +13:00
'gitUrl' => 'git@github.com:appwrite/sdk-for-web.git',
'gitRepoName' => 'sdk-for-web',
2020-01-28 10:50:41 +13:00
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'master',
2021-03-27 07:49:04 +13:00
'demos' => [
[
'icon' => 'react.svg',
2021-04-12 07:26:33 +12:00
'name' => 'Todo App with React JS',
2021-03-27 07:49:04 +13:00
'description' => 'A simple Todo app that uses both the Appwrite account and database APIs.',
2021-04-12 07:26:33 +12:00
'source' => 'https://github.com/appwrite/todo-with-react',
'url' => 'https://appwrite-todo-with-react.vercel.app/',
2021-03-27 07:49:04 +13:00
],
[
'icon' => 'vue.svg',
2021-04-12 07:26:33 +12:00
'name' => 'Todo App with Vue JS',
2021-03-27 07:49:04 +13:00
'description' => 'A simple Todo app that uses both the Appwrite account and database APIs.',
2021-04-12 07:26:33 +12:00
'source' => 'https://github.com/appwrite/todo-with-vue',
'url' => 'https://appwrite-todo-with-vue.vercel.app/',
2021-03-27 07:49:04 +13:00
],
[
'icon' => 'angular.svg',
'name' => 'Todo App with Angular',
2021-03-27 07:49:04 +13:00
'description' => 'A simple Todo app that uses both the Appwrite account and database APIs.',
2021-04-12 07:26:33 +12:00
'source' => 'https://github.com/appwrite/todo-with-angular',
'url' => 'https://appwrite-todo-with-angular.vercel.app/',
2021-03-27 07:49:04 +13:00
],
[
'icon' => 'svelte.svg',
2021-04-12 07:26:33 +12:00
'name' => 'Todo App with Svelte',
2021-03-27 07:49:04 +13:00
'description' => 'A simple Todo app that uses both the Appwrite account and database APIs.',
2021-04-12 07:26:33 +12:00
'source' => 'https://github.com/appwrite/todo-with-svelte',
'url' => 'https://appwrite-todo-with-svelte.vercel.app/',
2021-03-27 07:49:04 +13:00
],
]
2020-01-22 03:39:42 +13:00
],
2020-05-17 19:33:17 +12:00
[
'key' => 'flutter',
'name' => 'Flutter',
2022-09-22 16:07:34 +12:00
'version' => '8.1.0',
2020-05-17 19:33:17 +12:00
'url' => 'https://github.com/appwrite/sdk-for-flutter',
2020-12-14 01:59:12 +13:00
'package' => 'https://pub.dev/packages/appwrite',
2020-05-17 19:33:17 +12:00
'enabled' => true,
2021-09-24 18:09:03 +12:00
'beta' => false,
2021-01-09 19:04:39 +13:00
'dev' => false,
2021-02-11 02:07:55 +13:00
'hidden' => false,
2020-05-17 19:33:17 +12:00
'family' => APP_PLATFORM_CLIENT,
'prism' => 'dart',
2020-06-20 23:20:49 +12:00
'source' => \realpath(__DIR__ . '/../sdks/client-flutter'),
2020-05-17 19:33:17 +12:00
'gitUrl' => 'git@github.com:appwrite/sdk-for-flutter.git',
'gitRepoName' => 'sdk-for-flutter',
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'master',
2020-05-17 19:33:17 +12:00
],
2020-01-22 03:39:42 +13:00
[
2021-10-14 01:22:42 +13:00
'key' => 'apple',
'name' => 'Apple',
2022-09-22 16:07:34 +12:00
'version' => '1.1.0',
2021-10-02 00:10:29 +13:00
'url' => 'https://github.com/appwrite/sdk-for-apple',
'package' => 'https://github.com/appwrite/sdk-for-apple',
'enabled' => true,
'beta' => false,
2021-01-09 19:04:39 +13:00
'dev' => false,
2021-02-11 02:07:55 +13:00
'hidden' => false,
2020-01-29 02:16:33 +13:00
'family' => APP_PLATFORM_CLIENT,
'prism' => 'swift',
2021-10-02 00:10:29 +13:00
'source' => \realpath(__DIR__ . '/../sdks/client-apple'),
'gitUrl' => 'git@github.com:appwrite/sdk-for-apple.git',
'gitRepoName' => 'sdk-for-apple',
2020-01-28 10:50:41 +13:00
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'master',
2020-01-22 03:39:42 +13:00
],
2020-05-19 01:37:53 +12:00
[
'key' => 'objective-c',
'name' => 'Objective C',
'url' => '',
2020-12-14 01:59:12 +13:00
'package' => '',
2020-05-19 01:37:53 +12:00
'enabled' => false,
'beta' => false,
2021-01-09 19:04:39 +13:00
'dev' => false,
2021-02-11 02:07:55 +13:00
'hidden' => false,
2020-05-19 01:37:53 +12:00
'family' => APP_PLATFORM_CLIENT,
'prism' => '',
'source' => false,
'gitUrl' => 'git@github.com:appwrite/sdk-for-objective-c.git',
'gitRepoName' => 'sdk-for-objective-c',
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'master',
2020-05-19 01:37:53 +12:00
],
2020-01-22 03:39:42 +13:00
[
2021-06-10 00:45:38 +12:00
'key' => 'android',
'name' => 'Android',
2022-09-22 16:07:34 +12:00
'version' => '1.1.0',
2021-06-10 00:45:38 +12:00
'url' => 'https://github.com/appwrite/sdk-for-android',
2021-07-08 02:47:24 +12:00
'package' => 'https://search.maven.org/artifact/io.appwrite/sdk-for-android',
2021-06-10 00:45:38 +12:00
'enabled' => true,
'beta' => false,
2021-01-09 19:04:39 +13:00
'dev' => false,
2021-02-11 02:07:55 +13:00
'hidden' => false,
2020-01-29 02:16:33 +13:00
'family' => APP_PLATFORM_CLIENT,
'prism' => 'kotlin',
2021-06-10 00:45:38 +12:00
'source' => \realpath(__DIR__ . '/../sdks/client-android'),
'gitUrl' => 'git@github.com:appwrite/sdk-for-android.git',
'gitRepoName' => 'sdk-for-android',
2020-01-28 10:50:41 +13:00
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'main',
'docDirectories' => [
2021-07-07 06:20:23 +12:00
'Kotlin' => 'kotlin',
'Java' => 'java',
],
2020-01-22 03:39:42 +13:00
],
2020-05-17 20:01:38 +12:00
// [
// 'key' => 'java',
// 'name' => 'Java',
// 'url' => '',
// 'enabled' => false,
// 'beta' => false,
2021-01-09 19:04:39 +13:00
// 'dev' => false,
2021-02-11 02:07:55 +13:00
// 'hidden' => false,
2020-05-17 20:01:38 +12:00
// 'family' => APP_PLATFORM_CLIENT,
// 'prism' => 'java',
// 'source' => false,
// 'gitUrl' => 'git@github.com:appwrite/sdk-for-java.git',
// 'gitRepoName' => 'sdk-for-java',
// 'gitUserName' => 'appwrite',
// ],
2020-01-22 03:39:42 +13:00
],
],
2022-01-08 02:32:03 +13:00
2020-02-24 07:09:34 +13:00
APP_PLATFORM_CONSOLE => [
2020-02-24 19:43:21 +13:00
'key' => APP_PLATFORM_CONSOLE,
2020-02-24 07:09:34 +13:00
'name' => 'Console',
'enabled' => false,
'beta' => false,
2021-07-28 02:16:12 +12:00
'languages' => [
2020-02-24 07:09:34 +13:00
[
2020-05-17 21:13:48 +12:00
'key' => 'web',
2020-05-17 19:33:17 +12:00
'name' => 'Console',
2022-09-22 16:07:34 +12:00
'version' => '7.1.0',
2020-02-24 07:09:34 +13:00
'url' => 'https://github.com/appwrite/sdk-for-console',
2020-12-14 01:59:12 +13:00
'package' => '',
2020-02-24 07:09:34 +13:00
'enabled' => true,
'beta' => false,
2021-01-09 19:04:39 +13:00
'dev' => false,
2021-02-11 02:07:55 +13:00
'hidden' => true,
2020-02-24 07:09:34 +13:00
'family' => APP_PLATFORM_CONSOLE,
'prism' => 'console',
2020-06-20 23:20:49 +12:00
'source' => \realpath(__DIR__ . '/../sdks/console-web'),
2020-02-24 19:43:21 +13:00
'gitUrl' => null,
2021-10-18 20:37:09 +13:00
'gitBranch' => null,
2020-02-24 07:09:34 +13:00
'gitRepoName' => 'sdk-for-console',
'gitUserName' => 'appwrite',
],
2022-02-25 23:50:34 +13:00
[
'key' => 'cli',
'name' => 'Command Line',
2022-09-22 21:24:50 +12:00
'version' => '1.1.1',
2022-02-25 23:50:34 +13:00
'url' => 'https://github.com/appwrite/sdk-for-cli',
'package' => 'https://www.npmjs.com/package/appwrite-cli',
'enabled' => true,
'beta' => true,
'dev' => false,
'hidden' => false,
'family' => APP_PLATFORM_CONSOLE,
'prism' => 'bash',
'source' => \realpath(__DIR__ . '/../sdks/console-cli'),
'gitUrl' => 'git@github.com:appwrite/sdk-for-cli.git',
'gitRepoName' => 'sdk-for-cli',
'gitUserName' => 'appwrite',
2022-05-18 02:12:47 +12:00
'gitBranch' => 'master',
2022-02-25 23:50:34 +13:00
],
2020-02-24 07:09:34 +13:00
],
],
2020-01-31 05:17:58 +13:00
2020-01-22 03:39:42 +13:00
APP_PLATFORM_SERVER => [
2020-02-09 07:52:59 +13:00
'key' => APP_PLATFORM_SERVER,
2020-01-22 03:39:42 +13:00
'name' => 'Server',
2020-08-01 06:24:41 +12:00
'description' => 'Libraries for integrating with Appwrite to build server side integrations. Read the [getting started for server](/docs/getting-started-for-server) tutorial to start building your first server integration.',
2020-01-22 03:39:42 +13:00
'enabled' => true,
'beta' => false,
2021-07-28 02:16:12 +12:00
'languages' => [
2020-01-22 03:39:42 +13:00
[
2020-01-27 06:05:50 +13:00
'key' => 'nodejs',
2020-01-22 03:39:42 +13:00
'name' => 'Node.js',
2022-09-22 16:07:34 +12:00
'version' => '8.1.0',
2020-01-28 10:50:41 +13:00
'url' => 'https://github.com/appwrite/sdk-for-node',
2020-12-14 01:59:12 +13:00
'package' => 'https://www.npmjs.com/package/node-appwrite',
2020-01-22 03:39:42 +13:00
'enabled' => true,
'beta' => false,
2021-01-09 19:04:39 +13:00
'dev' => false,
2021-02-11 02:07:55 +13:00
'hidden' => false,
2020-01-29 02:16:33 +13:00
'family' => APP_PLATFORM_SERVER,
'prism' => 'javascript',
2020-06-20 23:20:49 +12:00
'source' => \realpath(__DIR__ . '/../sdks/server-nodejs'),
2020-01-28 10:50:41 +13:00
'gitUrl' => 'git@github.com:appwrite/sdk-for-node.git',
'gitRepoName' => 'sdk-for-node',
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'master',
2020-01-22 03:39:42 +13:00
],
2020-05-28 18:00:07 +12:00
[
'key' => 'deno',
'name' => 'Deno',
2022-09-22 16:07:34 +12:00
'version' => '6.1.0',
2020-05-28 18:00:07 +12:00
'url' => 'https://github.com/appwrite/sdk-for-deno',
2020-12-14 01:59:12 +13:00
'package' => 'https://deno.land/x/appwrite',
2020-08-01 15:48:36 +12:00
'enabled' => true,
'beta' => false,
2021-01-09 19:04:39 +13:00
'dev' => false,
2021-02-11 02:07:55 +13:00
'hidden' => false,
2020-05-28 18:00:07 +12:00
'family' => APP_PLATFORM_SERVER,
'prism' => 'typescript',
2020-06-20 23:20:49 +12:00
'source' => \realpath(__DIR__ . '/../sdks/server-deno'),
2020-05-28 18:00:07 +12:00
'gitUrl' => 'git@github.com:appwrite/sdk-for-deno.git',
'gitRepoName' => 'sdk-for-deno',
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'master',
2020-05-28 18:00:07 +12:00
],
2020-01-22 03:39:42 +13:00
[
2020-01-27 06:05:50 +13:00
'key' => 'php',
2020-01-22 03:39:42 +13:00
'name' => 'PHP',
2022-09-22 16:07:34 +12:00
'version' => '7.1.0',
2020-01-28 10:50:41 +13:00
'url' => 'https://github.com/appwrite/sdk-for-php',
2020-12-14 01:59:12 +13:00
'package' => 'https://packagist.org/packages/appwrite/appwrite',
2020-01-22 03:39:42 +13:00
'enabled' => true,
2020-01-29 02:16:33 +13:00
'beta' => false,
2021-01-09 19:04:39 +13:00
'dev' => false,
2021-02-11 02:07:55 +13:00
'hidden' => false,
2020-01-29 02:16:33 +13:00
'family' => APP_PLATFORM_SERVER,
'prism' => 'php',
2020-06-20 23:20:49 +12:00
'source' => \realpath(__DIR__ . '/../sdks/server-php'),
2020-01-28 10:50:41 +13:00
'gitUrl' => 'git@github.com:appwrite/sdk-for-php.git',
'gitRepoName' => 'sdk-for-php',
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'master',
2020-01-22 03:39:42 +13:00
],
[
2020-01-27 06:05:50 +13:00
'key' => 'python',
2020-01-22 03:39:42 +13:00
'name' => 'Python',
2022-09-22 16:07:34 +12:00
'version' => '1.1.0',
2020-01-28 10:50:41 +13:00
'url' => 'https://github.com/appwrite/sdk-for-python',
2020-12-14 01:59:12 +13:00
'package' => 'https://pypi.org/project/appwrite/',
2020-01-22 03:39:42 +13:00
'enabled' => true,
2021-02-11 21:40:55 +13:00
'beta' => false,
2021-01-09 19:04:39 +13:00
'dev' => false,
2021-02-11 02:07:55 +13:00
'hidden' => false,
2020-01-29 02:16:33 +13:00
'family' => APP_PLATFORM_SERVER,
'prism' => 'python',
2020-06-20 23:20:49 +12:00
'source' => \realpath(__DIR__ . '/../sdks/server-python'),
2020-01-28 10:50:41 +13:00
'gitUrl' => 'git@github.com:appwrite/sdk-for-python.git',
'gitRepoName' => 'sdk-for-python',
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'master',
2020-01-22 03:39:42 +13:00
],
[
2020-01-27 06:05:50 +13:00
'key' => 'ruby',
2020-01-22 03:39:42 +13:00
'name' => 'Ruby',
2022-09-22 16:07:34 +12:00
'version' => '7.1.0',
2020-01-28 10:50:41 +13:00
'url' => 'https://github.com/appwrite/sdk-for-ruby',
2020-12-14 01:59:12 +13:00
'package' => 'https://rubygems.org/gems/appwrite',
2020-01-22 03:39:42 +13:00
'enabled' => true,
2021-02-11 21:40:55 +13:00
'beta' => false,
2021-01-09 19:04:39 +13:00
'dev' => false,
2021-02-11 02:07:55 +13:00
'hidden' => false,
2020-01-29 02:16:33 +13:00
'family' => APP_PLATFORM_SERVER,
'prism' => 'ruby',
2020-06-20 23:20:49 +12:00
'source' => \realpath(__DIR__ . '/../sdks/server-ruby'),
2020-01-28 10:50:41 +13:00
'gitUrl' => 'git@github.com:appwrite/sdk-for-ruby.git',
'gitRepoName' => 'sdk-for-ruby',
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'master',
2020-01-22 03:39:42 +13:00
],
2020-02-02 00:50:38 +13:00
[
'key' => 'go',
'name' => 'Go',
2022-09-22 16:07:34 +12:00
'version' => '1.1.0',
2020-02-02 00:50:38 +13:00
'url' => 'https://github.com/appwrite/sdk-for-go',
2020-12-14 01:59:12 +13:00
'package' => '',
2020-05-17 20:15:51 +12:00
'enabled' => false,
2020-02-02 00:50:38 +13:00
'beta' => true,
2021-01-09 19:04:39 +13:00
'dev' => false,
2021-02-11 02:07:55 +13:00
'hidden' => false,
2020-02-02 00:50:38 +13:00
'family' => APP_PLATFORM_SERVER,
'prism' => 'go',
2020-06-20 23:20:49 +12:00
'source' => \realpath(__DIR__ . '/../sdks/server-go'),
2020-02-02 00:50:38 +13:00
'gitUrl' => 'git@github.com:appwrite/sdk-for-go.git',
'gitRepoName' => 'sdk-for-go',
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'master',
2020-02-02 00:50:38 +13:00
],
2020-05-02 16:40:22 +12:00
[
'key' => 'java',
'name' => 'Java',
2022-09-22 16:07:34 +12:00
'version' => '1.1.0',
2020-05-02 16:40:22 +12:00
'url' => 'https://github.com/appwrite/sdk-for-java',
2020-12-14 01:59:12 +13:00
'package' => '',
2020-05-17 20:15:51 +12:00
'enabled' => false,
2020-05-02 16:40:22 +12:00
'beta' => true,
2021-01-09 19:04:39 +13:00
'dev' => false,
2021-02-11 02:07:55 +13:00
'hidden' => false,
2020-05-02 16:40:22 +12:00
'family' => APP_PLATFORM_SERVER,
'prism' => 'java',
2020-06-20 23:20:49 +12:00
'source' => \realpath(__DIR__ . '/../sdks/server-java'),
2020-05-02 16:40:22 +12:00
'gitUrl' => 'git@github.com:appwrite/sdk-for-java.git',
'gitRepoName' => 'sdk-for-java',
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'master',
2020-05-02 16:40:22 +12:00
],
2021-01-04 11:33:23 +13:00
[
2021-01-04 22:23:36 +13:00
'key' => 'dotnet',
'name' => '.NET',
2022-09-22 16:07:34 +12:00
'version' => '1.1.0',
2021-01-04 22:23:36 +13:00
'url' => 'https://github.com/appwrite/sdk-for-dotnet',
2021-01-05 06:56:08 +13:00
'package' => 'https://www.nuget.org/packages/Appwrite',
2021-10-18 20:37:09 +13:00
'enabled' => false,
2021-01-04 11:33:23 +13:00
'beta' => true,
2021-04-17 21:02:51 +12:00
'dev' => true,
2021-02-11 02:07:55 +13:00
'hidden' => false,
2021-01-04 11:33:23 +13:00
'family' => APP_PLATFORM_SERVER,
'prism' => 'csharp',
2021-01-04 22:23:36 +13:00
'source' => \realpath(__DIR__ . '/../sdks/server-dotnet'),
'gitUrl' => 'git@github.com:appwrite/sdk-for-dotnet.git',
'gitRepoName' => 'sdk-for-dotnet',
2021-01-04 11:33:23 +13:00
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'main',
2021-01-04 11:33:23 +13:00
],
2020-05-19 01:37:53 +12:00
[
'key' => 'dart',
'name' => 'Dart',
2022-09-22 16:07:34 +12:00
'version' => '7.1.0',
2020-05-19 01:37:53 +12:00
'url' => 'https://github.com/appwrite/sdk-for-dart',
2021-01-11 05:50:17 +13:00
'package' => 'https://pub.dev/packages/dart_appwrite',
2021-01-07 02:02:00 +13:00
'enabled' => true,
2021-09-24 18:09:03 +12:00
'beta' => false,
2021-03-11 01:40:24 +13:00
'dev' => false,
2021-02-11 02:07:55 +13:00
'hidden' => false,
2020-05-19 01:37:53 +12:00
'family' => APP_PLATFORM_SERVER,
2021-01-07 02:02:00 +13:00
'prism' => 'dart',
2020-06-20 23:20:49 +12:00
'source' => \realpath(__DIR__ . '/../sdks/server-dart'),
2020-05-19 01:37:53 +12:00
'gitUrl' => 'git@github.com:appwrite/sdk-for-dart.git',
'gitRepoName' => 'sdk-for-dart',
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'master',
2020-05-19 01:37:53 +12:00
],
[
'key' => 'kotlin',
'name' => 'Kotlin',
2022-09-22 16:07:34 +12:00
'version' => '1.1.0',
'url' => 'https://github.com/appwrite/sdk-for-kotlin',
2021-07-08 02:47:24 +12:00
'package' => 'https://search.maven.org/artifact/io.appwrite/sdk-for-kotlin',
'enabled' => true,
'beta' => false,
'dev' => false,
'hidden' => false,
'family' => APP_PLATFORM_SERVER,
'prism' => 'kotlin',
'source' => \realpath(__DIR__ . '/../sdks/server-kotlin'),
'gitUrl' => 'git@github.com:appwrite/sdk-for-kotlin.git',
'gitRepoName' => 'sdk-for-kotlin',
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'main',
'docDirectories' => [
2021-07-07 06:20:23 +12:00
'Kotlin' => 'kotlin',
'Java' => 'java',
],
],
2021-09-28 23:24:54 +13:00
[
'key' => 'swift',
'name' => 'Swift',
2022-09-22 16:07:34 +12:00
'version' => '1.1.0',
2021-09-28 23:24:54 +13:00
'url' => 'https://github.com/appwrite/sdk-for-swift',
'package' => 'https://github.com/appwrite/sdk-for-swift',
'enabled' => true,
'beta' => false,
2021-10-17 23:43:54 +13:00
'dev' => false,
2021-09-28 23:24:54 +13:00
'hidden' => false,
'family' => APP_PLATFORM_SERVER,
'prism' => 'swift',
'source' => \realpath(__DIR__ . '/../sdks/server-swift'),
'gitUrl' => 'git@github.com:appwrite/sdk-for-swift.git',
'gitRepoName' => 'sdk-for-swift',
'gitUserName' => 'appwrite',
2021-10-18 20:37:09 +13:00
'gitBranch' => 'main',
2021-09-28 23:24:54 +13:00
],
2020-01-22 03:39:42 +13:00
],
],
];