forked from uphold/uphold-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UpholdSdk.podspec.json
54 lines (54 loc) · 1.21 KB
/
UpholdSdk.podspec.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "UpholdSdk",
"version": "0.17.0",
"summary": "The Uphold Swift SDK",
"description": "Uphold Swift SDK\n\nThis SDK provides an abstraction from the Uphold api.\nMore information of the Uphold developer tools available at: https://uphold.com/en/developer/api",
"homepage": "https://github.com/uphold/uphold-sdk-ios",
"license": "MIT",
"authors": {
"Diogo Guimarães": "guimaraes@uphold.com",
"Sandro Machado": "sandro@uphold.com"
},
"source": {
"git": "https://github.com/uphold/uphold-sdk-ios.git",
"tag": "0.17.0"
},
"platforms": {
"ios": "10.0"
},
"requires_arc": true,
"subspecs": [
{
"name": "Source",
"source_files": "Source/**/*.swift"
},
{
"name": "Production",
"dependencies": {
"UpholdSdk/Source": []
},
"resources": "Configurations/Production/*.plist"
},
{
"name": "Sandbox",
"dependencies": {
"UpholdSdk/Source": []
},
"resources": "Configurations/Sandbox/*.plist"
}
],
"dependencies": {
"KeychainSwift": [
"8.0.3"
],
"ObjectMapper": [
"2.2.9"
],
"PromiseKit": [
"4.5.0"
],
"SwiftClient": [
"3.0.1"
]
}
}