packages feed

yesod-paypal-rest-0.1.0: yesod-paypal-rest.cabal

name: yesod-paypal-rest
version: 0.1.0
synopsis: Yesod plugin to use PayPal with the paypal-rest-client library.
license: MIT
license-file: LICENSE
author: Braden Walters
maintainer: vc@braden-walters.info
category: Yesod
stability: experimental
build-type: Simple
cabal-version: >= 1.10
Tested-With: GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.1

description:
  Library to connect Yesod applications with PayPal's
  <https://developer.paypal.com/docs/api/ REST API v1> by using the
  <http://hackage.haskell.org/package/paypal-rest-client paypal-reset-client>
  package. For documentation, see the
  <https://github.com/meoblast001/yesod-paypal-rest/blob/master/README.md README>.
  Due to the experimental nature of the paypal-rest-client, it is recommended to
  explicitly give an exact version of that package even when you are already
  including this package.

library
  exposed-modules: Yesod.Payments.PayPal
  build-depends:
      base >= 4 && < 5
    , yesod-core >= 1.2 && < 1.5
    , paypal-rest-client < 1.0.0
    , time >= 1.5 && < 1.7
  hs-source-dirs: src
  default-language: Haskell2010

source-repository head
  type: git
  location: https://github.com/meoblast001/yesod-paypal-rest.git