Packages

An elixir SDK built on Tesla for interacting with swedbank's checkout APIs, not official nor endorsed by swedbank.

Current section

Files

Jump to

mix.exs

defmodule SwedbankpayCheckout.MixProject do
use Mix.Project
def project do
[
app: :swedbankpay_checkout,
version: "0.2.2",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
name: "swedbankpay_checkout",
source_url: "https://github.com/hooplab/swedbank-pay-checkout-elixir"
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:tesla, "~> 1.3.0"},
{:poison, "~> 4.0"},
{:inflex, "~> 2.0.0"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:jason, "~> 1.2", only: :test}
]
end
defp description() do
"An elixir SDK built on Tesla for interacting with swedbank's checkout APIs, not official nor endorsed by swedbank."
end
defp package() do
[
name: "swedbankpay_checkout",
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/hooplab/swedbank-pay-checkout-elixir"}
]
end
end