Packages
guardian
0.6.1
2.4.0
2.3.2
2.3.1
2.3.0
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.2
2.1.1
2.0.0
1.2.1
1.2.0
retired
1.1.1
1.1.0
1.0.1
1.0.0
1.0.0-beta.1
1.0.0-beta.0
0.14.6
0.14.5
0.14.4
0.14.3
retired
0.14.2
0.14.1
0.14.0
0.13.0
0.12.0
0.11.1
0.10.1
0.10.0
0.9.1
0.9.0
0.8.1
0.8.0
0.7.4
0.7.2
0.7.1
0.7.0
0.6.3
0.6.2
0.6.1
0.6.0
0.5.2
0.5.0
0.4.1
0.4.0
0.3.1
0.3.0
0.2.0
0.1.1
0.1.0
Elixir Authentication framework
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Guardian.Mixfile do
use Mix.Project
@version "0.6.1"
def project do
[
app: :guardian,
version: @version,
elixir: "~> 1.0",
package: package,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
contributors: ["Daniel Neighman"],
description: "Elixir Authentication framework",
homepage_url: "https://github.com/hassox/guardian",
docs: [source_ref: "v#{@version}", main: "overview"],
deps: deps
]
end
def application do
[applications: [:logger, :joken, :poison]]
end
defp deps do
[{:joken, "~> 0.15.0"},
{:poison, "~> 1.5"},
{:plug, "~> 1.0", only: :test},
{:ex_doc, "~> 0.8", only: :docs},
{:earmark, ">= 0.0.0", only: :docs},
{:uuid, ">=1.0.1"}]
end
defp package do
[
contributors: ["Daniel Neighman"],
licenses: ["MIT"],
links: %{github: "https://github.com/hassox/guardian"},
files: ~w(lib) ++ ~w(CHANGELOG.md LICENSE mix.exs README.md)
]
end
end