Packages

Elixir client for the IDVerse IDKit identity verification API

Current section

Files

Jump to
idverse mix.exs
Raw

mix.exs

defmodule Idverse.MixProject do
use Mix.Project
def project do
[
app: :idverse,
version: "0.3.0",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Elixir client for the IDVerse IDKit identity verification API",
package: package(),
name: "IDVerse Client",
source_url: "https://github.com/challengr-apps/idverse_client",
homepage_url: "https://hexdocs.pm/idverse",
docs: [
main: "readme",
extras: ["README.md", "LICENSE"]
]
]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/challengr-apps/idverse_client"},
files: ~w(lib .formatter.exs mix.exs README.md LICENSE CHANGELOG.md)
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Idverse.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:req, "~> 0.5.0"},
{:jason, "~> 1.4"},
{:ex_doc, "~> 0.34", only: :dev, runtime: false},
# Mock server dependencies (optional, for dev/test)
{:bandit, "~> 1.0", optional: true},
{:plug, "~> 1.14", optional: true},
# PostgreSQL persistence (optional, for mock server persistence)
{:ecto_sql, "~> 3.10", optional: true},
{:postgrex, "~> 0.17", optional: true}
]
end
end