Packages
mollie_api
0.1.0-20260721
0.1.0-20260722
0.1.0-20260721
0.1.0-20260717
0.1.0-20260716
0.1.0-20260708
0.1.0-20260702
0.1.0-20260629
0.1.0-20260625
0.1.0-20260622
0.1.0-20260619
0.1.0-20260617
0.1.0-20260615
0.1.0-20260611
0.1.0-20260609
0.1.0-20260601
0.1.0-20260529
0.1.0-20260527
0.1.0-20260526
0.1.0-20260525
0.1.0-20260521
0.1.0-20260519
0.1.0-20260515
0.1.0-20260513
0.1.0-20260512
0.1.0-20260507
0.1.0-20260505
0.1.0-20260504
0.1.0-20260430
0.1.0-20260429
0.1.0-20260428
0.1.0-20260427
0.1.0-20260423
0.1.0-20260421
0.1.0-20260420
0.1.0-20260415
0.1.0-20260410
0.1.0-20260409
0.1.0-20260408
0.1.0-20260402
0.1.0-20260401
0.1.0-20260331
0.1.0-20260330
0.1.0-20260327
0.1.0-20260317
0.1.0-20260313
0.1.0-20260310
0.1.0-20260309
0.1.0-20260306
0.1.0-20260305
0.1.0-20260303
0.1.0-20260302
0.1.0-20260226
0.1.0-20260218
0.1.0-20260217
0.1.0-20260210
0.1.0-20260206
0.1.0-20260205
0.1.0-20260204
0.1.0-20260203
0.1.0-20260202
0.1.0-20260130
0.1.0-20260129
0.1.0-20260114
0.1.0-20260109
0.1.0-20260107
0.1.0-20251222
0.1.0-20251125
0.1.0-20251121
0.1.0-20251119
0.1.0-20251118
0.1.0-20251113
An autogenerated Elixir client for the Mollie API, generated from the OpenAPI specification.
Current section
Files
Jump to
Current section
Files
mollie_api
mix.exs
mix.exs
defmodule MollieAPI.Mixfile do
use Mix.Project
def project do
[
app: :mollie_api,
version: "0.1.0-20260721",
elixir: "~> 1.18",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
package: package(),
description: "An autogenerated Elixir client for the Mollie API, generated from the OpenAPI specification.",
source_url: "https://gitlab.com/naslund-systems-public/elixir-mollie-api",
docs: docs(),
deps: deps()
]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
# Specify extra applications you'll use from Erlang/Elixir
[extra_applications: [:logger]]
end
# Dependencies can be Hex packages:
#
# {:my_dep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:my_dep, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.3.0"}
#
# Type "mix help deps" for more examples and options
defp deps do
[
{:tesla, "~> 1.14"},
{:ex_doc, "~> 0.37.3", only: :dev, runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false}
]
end
defp docs do
[
nest_modules_by_prefix: [
MollieAPI.Connection,
MollieAPI.Api,
MollieAPI.Model
],
before_closing_head_tag: fn _formatter ->
"""
<style>
.sidebar .full-list>li:not(.nesting-context) {
padding-left: 1em;
}
</style>
"""
end,
main: "gettingstarted",
extras: ["docs/GettingStarted.md": [title: "Getting Started"]]
]
end
defp package do
[
name: "mollie_api",
files: ~w(.formatter.exs config lib mix.exs README* LICENSE*),
licenses: ["LGPL-3.0-only"],
links: %{
"GitLab": "https://gitlab.com/naslund-systems-public/elixir-mollie-api"
}
]
end
end