-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
55 lines (47 loc) · 1.14 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
defmodule UeberauthWorkosAuthkit.MixProject do
use Mix.Project
@version "0.1.0"
@source_url "https://github.com/workos/ueberauth_workos_authkit"
def project do
[
app: :ueberauth_workos_authkit,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
# Docs
name: "Ueberauth WorkOS AuthKit",
description: description(),
source_url: @source_url,
package: package(),
docs: [extras: ["README.md", "LICENSE"], source_ref: @version]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ueberauth, "~> 0.10"},
{:workos, "~> 1.1"},
{:oauth2, "~> 2.0"},
{:jose, "~> 1.11"},
{:mock, "~> 0.3", only: :test},
{:ex_doc, "~> 0.34", only: :dev, runtime: false},
]
end
defp description do
"Implementation of an Ueberauth Strategy for WorkOS Single Sign-On with managed users."
end
defp package do
[
licenses: ["Apache-2.0"],
links: %{
"GitHub" => @source_url,
"WorkOS" => "https://workos.com",
},
]
end
end