Packages

Elixir client for the Authorize.Net merchant AIM API. A number of features are implemented, but I still consider this as WIP, and pull requests, suggestions, or other kind of feedback are very welcome! User guide at: https://github.com/marcelog/elixir_authorizenet.

Current section

Files

Jump to

mix.exs

defmodule AuthorizeNet.Mixfile do
use Mix.Project
def project do
[
app: :elixir_authorizenet,
name: "elixir_authorizenet",
source_url: "https://github.com/marcelog/elixir_authorizenet",
version: "0.4.0",
elixir: ">= 1.1.0",
description: description(),
package: package(),
deps: deps()
]
end
def application do
[
applications: [
:logger,
:ibrowse
]
]
end
defp description do
"""
Elixir client for the Authorize.Net merchant AIM API.
A number of features are implemented, but I still consider this as WIP, and pull requests,
suggestions, or other kind of feedback are very welcome!
User guide at: https://github.com/marcelog/elixir_authorizenet.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Marcelo Gornstein"],
licenses: ["Apache 2.0"],
links: %{
"GitHub" => "https://github.com/marcelog/elixir_authorizenet"
}
]
end
defp deps do
[
{:ibrowse, "~> 4.4.0"},
{:earmark, "~> 1.0.3", only: :dev},
{:ex_doc, "~> 0.14.5", only: :dev},
{:coverex, "~> 1.4.12", only: :test},
{:sweet_xml, "~> 0.6.4"},
{:xml_builder, "~> 0.0.9"},
{:servito, "~> 0.0.10", only: :test}
]
end
end