forked from leafo/lua-payments
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpayments-dev-1.rockspec
35 lines (30 loc) · 928 Bytes
/
payments-dev-1.rockspec
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
package = "payments"
version = "dev-1"
source = {
url = "git://github.com/leafo/lua-payments.git",
}
description = {
summary = "Payment APIs for Lua, including Stripe & PayPal. Works with Openresty",
homepage = "https://github.com/leafo/lua-payments",
license = "MIT"
}
dependencies = {
"lua >= 5.1",
"lua-cjson",
"luasocket",
"luasec",
"lapis", -- for encode_query_string
}
build = {
type = "builtin",
modules = {
["payments.amazon"] = "payments/amazon.lua",
["payments.base_client"] = "payments/base_client.lua",
["payments.paypal"] = "payments/paypal.lua",
["payments.paypal.adaptive"] = "payments/paypal/adaptive.lua",
["payments.paypal.express_checkout"] = "payments/paypal/express_checkout.lua",
["payments.paypal.helpers"] = "payments/paypal/helpers.lua",
["payments.paypal.rest"] = "payments/paypal/rest.lua",
["payments.stripe"] = "payments/stripe.lua",
}
}