-
Notifications
You must be signed in to change notification settings - Fork 0
/
lisp-pay.asd
59 lines (55 loc) · 1.95 KB
/
lisp-pay.asd
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
55
56
;;;; lisp-pay.asd
(asdf:defsystem #:lisp-pay
:description "Wrappers over multiple Payment Processor APIs"
:author "K1D77A"
:license "MIT"
:version "0.0.5"
:depends-on (#:str
#:ironclad
#:babel
#:alexandria
#:jonathan
#:dexador
#:lack
#:ningle
#:cl-base64
#:cl-tls
#:hunchentoot
#:closer-mop
#:hu.dwim.defclass-star
#:shasht)
:serial t
:pathname "src"
:components ((:file "package")
(:file "conditions")
(:file "helpers")
(:file "protocol")
(:file "response")
(:file "mop")
(:file "lisp-pay")
(:module "btcpay"
:components ((:file "package")
(:file "protocol")
(:file "btcpay")
(:file "webhooks")))
(:module "stripe"
:components ((:file "package")
(:file "conditions")
(:file "helpers")
(:file "protocol")
(:file "stripe")
(:file "webhooks")))
(:module "paypal"
:components ((:file "package")
(:file "conditions")
(:file "protocol")
(:file "token")
(:file "paypal")
(:file "webhooks")))
(:module "coinpayments"
:components ((:file "package")
(:file "classes")
(:file "conditions")
(:file "api-helpers")
(:file "coinpayments")
(:file "api-forms")))))