Packages

Notifications for your Phoenix app.

Current section

Files

Jump to
notix mix.exs
Raw

mix.exs

defmodule Notix.MixProject do
use Mix.Project
def project do
[
app: :notix,
version: "0.1.0",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
name: "Notix",
source_url: "https://github.com/websymphony/notix"
]
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
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp description() do
"Notifications for your Phoenix app."
end
defp package() do
[
name: "notix",
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Amit Gaur"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/websymphony/notix"},
]
end
end