Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Onfido.MixProject do
use Mix.Project
def project do
[
app: :onfido,
description: "Elixir wrapper for the Onfido API",
package: package(),
version: "0.2.0",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps()
]
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.19.0", only: :dev, runtime: false},
{:httpoison_form_data, "~> 0.1"},
{:httpoison, "~> 1.0"},
{:poison, "~> 3.1"}
]
end
defp package do
[
maintainers: ["overture8"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/PiggyPot/onfido"}
]
end
end