-
Notifications
You must be signed in to change notification settings - Fork 5
/
mix.exs
46 lines (41 loc) · 1004 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 Guardian.Backdoor.Mixfile do
use Mix.Project
@version "1.1.0"
@url "https://github.com/ueberauth/guardian_backdoor"
@maintainers [
"Daniel Neighman",
"Sean Callan",
"Sonny Scroggin"
]
def project do
[
app: :guardian_backdoor,
version: @version,
package: package(),
maintainers: @maintainers,
description: "A plug to write faster acceptance tests by skipping the sign-in process.",
homepage_url: @url,
elixir: "~> 1.4 or ~> 1.5",
deps: deps()
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:guardian, "~> 1.0 or ~> 2.0"},
{:plug, "~> 1.3.3 or ~> 1.4"},
{:ex_doc, ">= 0.0.0", only: :dev},
{:credo, ">= 0.0.0", only: [:dev, :test], runtime: false}
]
end
defp package do
[
maintainers: @maintainers,
licenses: ["MIT"],
links: %{github: @url},
files: ~w(lib) ++ ~w(LICENSE mix.exs README.md)
]
end
end