-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmix.exs
59 lines (52 loc) · 1.31 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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.1",
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