defmodule PhoenixPostgresPubSub.MixProject do use Mix.Project def project do [ app: :phoenix_postgres_pub_sub, version: "0.1.2", elixir: "~> 1.6", deps: deps(), description: "Subscribe to postgres notifications on specific database tables", package: [ licenses: ["MIT"], maintainers: [" Lorenzo Sinisi "], links: %{"GitHub" => "https://github.com/lorenzosinisi/phoenix_postgres_pub_sub"} ], docs: [main: "PhoenixPostgresPubSub", extras: ["README.md"]] ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:postgrex, "~> 0.13.3"}, {:ecto, "~> 2.2.10"}, {:ex_doc, ">= 0.0.0", only: :dev} ] end end