appwrite/app/config/providers.php

75 lines
2.1 KiB
PHP
Raw Normal View History

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