packages feed

morph-0.1.1.3: morph.cabal

name:                  morph
version:               0.1.1.3
synopsis:              A simple database migrator for PostgreSQL
description:           Morph is a tool to migrate your PostgreSQL databases
                       safely which supports rollbacks.
license:               BSD3
license-file:          LICENSE
author:                Thomas Feron
maintainer:            tho.feron@gmail.com
build-type:            Simple
cabal-version:         >=1.10
category:              Database

source-repository head
  type:                git
  location:            http://github.com/thoferon/morph
  tag:                 0.1.1.3

library
  hs-source-dirs:      src
  ghc-options:         -Wall
  default-language:    Haskell2010

  default-extensions:  OverloadedStrings

  exposed-modules:     Morph.Config
                       Morph.Migrator
                       Morph.Options

  build-depends:       base >=4.8 && <5
                     , optparse-applicative
                     , aeson
                     , yaml
                     , postgresql-simple
                     , bytestring
                     , text
                     , directory
                     , filepath

executable morph
  main-is:             Main.hs
  hs-source-dirs:      .
  ghc-options:         -Wall
  default-language:    Haskell2010
  build-depends:       base
                     , morph