-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
95 lines (88 loc) · 2.37 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
defmodule Chargebeex.MixProject do
use Mix.Project
@source_url "https://github.com/WTTJ/chargebeex"
def project do
[
app: :chargebeex,
name: "chargebeex",
description: "Elixir implementation of Chargebee API v2",
package: %{
licenses: ["MIT"],
links: %{
github: @source_url
}
},
source_url: @source_url,
homepage_url: @source_url,
version: "0.5.0",
elixir: "~> 1.12",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
env: [
host: "chargebee.com",
path: "/api/v2",
namespace: System.get_env("CHARGEBEEX_NAMESPACE"),
api_key: System.get_env("CHARGEBEEX_API_KEY")
]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:jason, "~> 1.0"},
{:hackney, "~> 1.18"},
{:plug, "~>1.11"},
{:ex_doc, "~> 0.23", only: :dev, runtime: false},
{:hammox, "~> 0.5", only: :test},
{:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:typed_struct, "~> 0.3.0"},
{:dialyxir, ">= 0.0.0", only: [:dev], runtime: false},
{:exconstructor, "~> 1.2.7"}
]
end
def docs do
[
extras: extras(),
main: "readme",
source_url: @source_url,
homepage_url: @source_url,
formatters: ["html"],
groups_for_modules: [
Client: [
Chargebeex.ClientBehaviour,
Chargebeex.Client.Hackney
],
Resources: [
Chargebeex.AttachedItem,
Chargebeex.Card,
Chargebeex.Customer,
Chargebeex.Event,
Chargebeex.Invoice,
Chargebeex.PortalSession,
Chargebeex.Subscription,
Chargebeex.Quote,
Chargebeex.HostedPage,
Chargebeex.ItemPrice,
Chargebeex.PaymentSource,
Chargebeex.Item,
Chargebeex.Usage
]
]
]
end
defp extras() do
["README.md": [title: "Overview"]]
end
end