forked from dmjio/stripe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstripe-core.cabal
65 lines (61 loc) · 2.78 KB
/
stripe-core.cabal
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
57
58
59
60
61
62
63
64
65
name: stripe-core
version: 2.4.1
synopsis: Stripe API for Haskell - Pure Core
license: MIT
license-file: LICENSE
author: David Johnson, Jeremy Shaw
maintainer: [email protected]
copyright: Copyright (c) 2016 David M. Johnson, Jeremy Shaw
homepage: https://github.com/dmjio/stripe-haskell
bug-reports: https://github.com/dmjio/stripe-haskell/issues
category: Web
build-type: Simple
cabal-version: >=1.10
Description:
.
<<https://stripe.com/img/navigation/[email protected]>>
.
[Pure API Wrapper]
`stripe-core` provides a complete binding to the Stripe API. `stripe-core` provides pure wrappers around all the Stripe API objects and methods. `stripe-core` is pure and is not tied to any particular HTTP client library. End users will typically install the `stripe-haskell` package which pulls in the `stripe-http-streams` library to obtain a complete set of functionality.
library
hs-source-dirs: src
build-depends: aeson >= 0.8 && < 0.10 || >= 0.11 && < 1.5
, base >= 4.7 && < 5
, bytestring >= 0.10 && < 0.11
, mtl >= 2.1.2 && < 2.3
, text >= 1.0 && < 1.3
, time >= 1.4 && < 1.9
, transformers >= 0.3 && < 0.6
, unordered-containers >= 0.2.5 && < 0.3
default-language: Haskell2010
other-modules: Web.Stripe.Types.Util
exposed-modules:
Web.Stripe.Account
Web.Stripe.ApplicationFee
Web.Stripe.ApplicationFeeRefund
Web.Stripe.Balance
Web.Stripe.Client
Web.Stripe.Card
Web.Stripe.Charge
Web.Stripe.Coupon
Web.Stripe.Customer
Web.Stripe.Discount
Web.Stripe.Dispute
Web.Stripe.Error
Web.Stripe.Event
Web.Stripe.Invoice
Web.Stripe.InvoiceItem
Web.Stripe.Plan
Web.Stripe.Recipient
Web.Stripe.Refund
Web.Stripe.StripeRequest
Web.Stripe.Subscription
Web.Stripe.Token
Web.Stripe.Transfer
Web.Stripe.Types
Web.Stripe.Util
ghc-options: -Wall
source-repository head
type: git
subdir: stripe-core
location: git://github.com/dmjio/stripe-haskell.git