-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathsplit.ts
39 lines (38 loc) · 1.02 KB
/
split.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import SplitSvg from '@site/static/img/split-no-fill.svg';
import { Provider } from '.';
export const Split: Provider = {
name: 'Split',
logo: SplitSvg,
technologies: [
{
technology: 'JavaScript',
vendorOfficial: true,
href: 'https://github.com/splitio/split-openfeature-provider-js',
category: ['Server'],
},
{
technology: 'Go',
vendorOfficial: true,
href: 'https://github.com/splitio/split-openfeature-provider-go',
category: ['Server'],
},
{
technology: 'Java',
vendorOfficial: true,
href: 'https://github.com/splitio/split-openfeature-provider-java',
category: ['Server'],
},
{
technology: '.NET',
vendorOfficial: true,
href: 'https://github.com/splitio/split-openfeature-provider-dotnet',
category: ['Server'],
},
{
technology: 'PHP',
vendorOfficial: false,
href: 'https://github.com/open-feature/php-sdk-contrib/tree/main/providers/Split',
category: ['Server'],
},
],
};