1
0
Fork 0
mirror of synced 2024-06-06 04:44:52 +12:00
appwrite/app/config/providers.php

75 lines
2.1 KiB
PHP
Raw Normal View History

2019-05-09 18:54:39 +12:00
<?php
2019-05-09 18:54:39 +12:00
return [
2019-09-04 07:17:42 +12:00
'bitbucket' => [
'developers' => 'https://developer.atlassian.com/bitbucket',
'icon' => 'icon-bitbucket',
2019-10-01 22:01:22 +13:00
'enabled' => true,
2019-09-04 07:17:42 +12:00
],
'facebook' => [
'developers' => 'https://developers.facebook.com/',
'icon' => 'icon-facebook',
'enabled' => true,
2019-09-04 07:17:42 +12:00
],
'github' => [
'developers' => 'https://developer.github.com/',
'icon' => 'icon-github-circled',
'enabled' => true,
2019-09-04 07:17:42 +12:00
],
'gitlab' => [
'developers' => 'https://docs.gitlab.com/ee/api/',
'icon' => 'icon-gitlab',
2019-09-30 22:03:55 +13:00
'enabled' => true,
2019-09-04 07:17:42 +12:00
],
'google' => [
'developers' => 'https://developers.google.com/',
'icon' => 'icon-google',
2019-09-28 21:27:21 +12:00
'enabled' => true,
2019-09-04 07:17:42 +12:00
],
'instagram' => [
'developers' => 'https://www.instagram.com/developer/',
'icon' => 'icon-instagram',
'enabled' => false,
2019-09-04 07:17:42 +12:00
],
'microsoft' => [
'developers' => 'https://developer.microsoft.com/en-us/',
'icon' => 'icon-windows',
'enabled' => true,
2019-09-04 07:17:42 +12:00
],
'twitter' => [
'developers' => 'https://developer.twitter.com/',
'icon' => 'icon-twitter',
'enabled' => false,
2019-09-04 07:17:42 +12:00
],
'linkedin' => [
'developers' => 'https://developer.linkedin.com/',
'icon' => 'icon-linkedin',
'enabled' => true,
2019-09-04 07:17:42 +12:00
],
2019-10-03 12:43:54 +13:00
'slack' => [
'developers' => 'https://api.slack.com/',
'icon' => 'icon-slack',
'enabled' => true,
],
2019-10-03 02:39:40 +13:00
'dropbox' => [
'developers' => 'https://www.dropbox.com/developers/documentation',
'icon' => 'icon-dropbox',
2019-10-02 21:00:57 +13:00
'enabled' => true,
],
2019-10-05 03:29:16 +13:00
'apple' => [
2019-10-06 09:47:28 +13:00
'developers' => 'https://developer.apple.com/',
2019-10-05 03:29:16 +13:00
'icon' => 'icon-apple',
2019-10-05 22:22:38 +13:00
'enabled' => false,
2019-10-05 03:29:16 +13:00
],
2019-10-06 02:09:01 +13:00
'amazon' => [
2019-10-06 09:50:02 +13:00
'developers' => 'https://developer.amazon.com/apps-and-games/services-and-apis',
2019-10-06 02:09:01 +13:00
'icon' => 'icon-amazon',
2019-10-06 02:13:28 +13:00
'enabled' => false,
2019-10-06 02:09:01 +13:00
],
2019-10-06 09:48:27 +13:00
'vk' => [
'developers' => 'https://vk.com/dev',
'icon' => 'icon-vk',
2019-10-06 09:47:28 +13:00
'enabled' => false,
],
2019-05-09 18:54:39 +12:00
];