Packages

Cachex cache for the APIac APIacAuthBearer authenticator

Current section

Files

Jump to

mix.exs

defmodule APIacAuthBearerCacheCachex.MixProject do
use Mix.Project
def project do
[
app: :apiac_auth_bearer_cache_cachex,
description: "Cachex cache for the APIac APIacAuthBearer authenticator",
version: "1.0.0",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: [
main: "readme",
extras: ["README.md"]
],
package: package(),
source_url: "https://github.com/tanguilp/apiac_auth_bearer_cache_cachex"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {APIacAuthBearerCacheCachex.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:apiac_auth_bearer, "~> 1.0"},
{:cachex, "~> 3.1"},
{:dialyxir, "~> 1.0.0-rc.4", only: [:dev], runtime: false},
{:ex_doc, "~> 0.19", only: :dev, runtime: false}
]
end
def package() do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/tanguilp/apiac_auth_bearer_cache_cachex"}
]
end
end