-
Notifications
You must be signed in to change notification settings - Fork 21
/
mix.exs
46 lines (40 loc) · 948 Bytes
/
mix.exs
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
defmodule Phauxth.Mixfile do
use Mix.Project
@version "2.5.1"
@description """
Authentication library for Phoenix, and other Plug-based, web applications
"""
def project do
[
app: :phauxth,
version: @version,
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
name: "Phauxth",
description: @description,
package: package(),
source_url: "https://github.com/riverrun/phauxth",
deps: deps()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:plug, "~> 1.11"},
{:argon2_elixir, "~> 2.4", optional: true},
{:ex_doc, "~> 0.23", only: :dev, runtime: false},
{:dialyxir, "~> 1.0.0", only: :dev, runtime: false}
]
end
defp package do
[
maintainers: ["David Whitlock"],
licenses: ["BSD"],
links: %{"GitHub" => "https://github.com/riverrun/phauxth"}
]
end
end