ash_authentication/mix.exs

255 lines
9.2 KiB
Elixir
Raw Normal View History

2022-09-28 09:54:05 +13:00
defmodule AshAuthentication.MixProject do
2022-09-28 10:04:04 +13:00
@moduledoc false
2022-09-28 09:54:05 +13:00
use Mix.Project
2024-04-03 05:42:11 +13:00
@version "4.0.0-rc.2"
2022-09-28 10:04:04 +13:00
2022-09-28 09:54:05 +13:00
def project do
[
app: :ash_authentication,
2022-09-28 10:04:04 +13:00
version: @version,
description: "User authentication support for Ash",
2022-09-28 09:54:05 +13:00
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
2022-09-28 10:23:40 +13:00
preferred_cli_env: [ci: :test],
aliases: aliases(),
2022-09-28 10:04:04 +13:00
deps: deps(),
2022-09-28 10:11:00 +13:00
package: package(),
elixirc_paths: elixirc_paths(Mix.env()),
consolidate_protocols: Mix.env() == :prod,
2022-09-28 10:11:00 +13:00
dialyzer: [
plt_add_apps: [:mix, :ex_unit],
plt_core_path: "priv/plts",
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
2022-10-25 20:32:57 +13:00
],
docs: [
main: "readme",
extras: [
{"README.md", name: "READ ME"},
"documentation/tutorials/getting-started-with-authentication.md",
"documentation/tutorials/auth0-quickstart.md",
"documentation/tutorials/github-quickstart.md",
"documentation/tutorials/google-quickstart.md",
"documentation/tutorials/integrating-ash-authentication-and-phoenix.md",
"documentation/tutorials/magic-links-quickstart.md",
"documentation/topics/custom-strategy.md",
"documentation/topics/policies-on-authentication-resources.md",
"documentation/topics/testing.md",
"documentation/topics/tokens.md",
"documentation/topics/confirmation.md",
"documentation/topics/upgrading.md",
"documentation/dsls/DSL:-AshAuthentication.md",
"documentation/dsls/DSL:-AshAuthentication.AddOn.Confirmation.md",
"documentation/dsls/DSL:-AshAuthentication.Strategy.Auth0.md",
"documentation/dsls/DSL:-AshAuthentication.Strategy.Github.md",
"documentation/dsls/DSL:-AshAuthentication.Strategy.Google.md",
"documentation/dsls/DSL:-AshAuthentication.Strategy.MagicLink.md",
"documentation/dsls/DSL:-AshAuthentication.Strategy.OAuth2.md",
"documentation/dsls/DSL:-AshAuthentication.Strategy.Oidc.md",
"documentation/dsls/DSL:-AshAuthentication.Strategy.Password.md",
"documentation/dsls/DSL:-AshAuthentication.TokenResource.md",
"documentation/dsls/DSL:-AshAuthentication.UserIdentity.md"
],
groups_for_extras: [
Tutorials: ~r'documentation/tutorials',
"How To": ~r'documentation/how_to',
Topics: ~r'documentation/topics',
DSLs: ~r'documentation/dsls'
],
extra_section: "GUIDES",
2022-10-25 20:32:57 +13:00
formatters: ["html"],
before_closing_head_tag: fn type ->
if type == :html do
"""
<script>
if (location.hostname === "hexdocs.pm") {
var script = document.createElement("script");
script.src = "https://plausible.io/js/script.js";
script.setAttribute("defer", "defer")
script.setAttribute("data-domain", "ashhexdocs")
document.head.appendChild(script);
}
</script>
"""
end
end,
2022-10-25 20:32:57 +13:00
filter_modules: ~r/^Elixir.AshAuthentication/,
source_url_pattern:
"https://github.com/team-alembic/ash_authentication/blob/main/%{path}#L%{line}",
nest_modules_by_prefix: [
AshAuthentication.Strategy,
AshAuthentication.AddOn,
AshAuthentication.Plug,
AshAuthentication.Validations
],
2022-10-25 20:32:57 +13:00
groups_for_modules: [
Extensions: [
AshAuthentication,
AshAuthentication.TokenResource,
AshAuthentication.UserIdentity
],
Strategies: [
AshAuthentication.Strategy,
AshAuthentication.Strategy.Auth0,
AshAuthentication.Strategy.Github,
AshAuthentication.Strategy.Google,
AshAuthentication.Strategy.MagicLink,
AshAuthentication.Strategy.OAuth2,
AshAuthentication.Strategy.Password
2022-10-25 20:32:57 +13:00
],
CustomStrategies: [
~r/AshAuthentication.Strategy.Custom/
],
"Add ons": [
AshAuthentication.AddOn.Confirmation
],
2022-10-25 20:32:57 +13:00
Cryptography: [
AshAuthentication.HashProvider,
AshAuthentication.BcryptProvider,
AshAuthentication.Jwt
2022-10-25 20:32:57 +13:00
],
Introspection: [
AshAuthentication.Info,
AshAuthentication.TokenResource.Info,
AshAuthentication.UserIdentity.Info
],
Utilities: [
AshAuthentication.Debug,
AshAuthentication.Secret,
AshAuthentication.Sender,
AshAuthentication.Supervisor,
~r/.*Actions$/,
AshAuthentication.Strategy.Password.Actions,
AshAuthentication.TokenResource.Expunger
],
Plugs: [~r/^AshAuthentication\.Plug.*/, AshAuthentication.Strategy.MagicLink.Plug],
"Reusable Components": [
AshAuthentication.GenerateTokenChange,
AshAuthentication.Strategy.Password.HashPasswordChange,
AshAuthentication.Strategy.Password.PasswordConfirmationValidation,
AshAuthentication.Strategy.Password.PasswordValidation,
AshAuthentication.Checks.AshAuthenticationInteraction,
AshAuthentication.Password.Plug,
~r/AshAuthentication.Validations/
],
Errors: ~r/AshAuthentication.Errors/,
"DSL Transformers": [
~r/Transformer/,
~r/Verifier/
]
2022-10-25 20:32:57 +13:00
]
2022-09-28 10:11:00 +13:00
]
2022-09-28 10:04:04 +13:00
]
end
def package do
[
maintainers: [
"James Harton <james.harton@alembic.com.au>",
"Zach Daniel <zach@zachdaniel.dev>"
2022-09-28 10:04:04 +13:00
],
licenses: ["MIT"],
links: %{
"Source" => "https://github.com/team-alembic/ash_authentication",
"Phoenix Support" => "https://github.com/team-alembic/ash_authentication_phoenix"
2022-09-28 10:04:04 +13:00
},
source_url: "https://github.com/team-alembic/ash_authentication",
files: ~w[lib .formatter.exs mix.exs README* LICENSE* CHANGELOG* documentation]
2022-09-28 09:54:05 +13:00
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: extra_applications(Mix.env()),
2022-09-28 09:54:05 +13:00
mod: {AshAuthentication.Application, []}
]
end
defp extra_applications(:dev), do: [:logger, :bcrypt_elixir]
defp extra_applications(:test), do: [:logger, :bcrypt_elixir]
defp extra_applications(_), do: [:logger]
2022-09-28 09:54:05 +13:00
# Run "mix help deps" to learn about dependencies.
defp deps do
[
2024-04-03 05:35:29 +13:00
{:ash, ash_version("~> 3.0.0-rc.6")},
{:assent, "~> 0.2 and >= 0.2.8"},
{:bcrypt_elixir, "~> 3.0"},
{:castore, "~> 1.0"},
{:finch, "~> 0.18.0"},
{:jason, "~> 1.4"},
{:joken, "~> 2.5"},
{:plug, "~> 1.13"},
{:spark, "~> 2.0"},
{:splode, "~> 0.2"},
{:absinthe_plug, "~> 1.5", only: [:dev, :test]},
{:ash_graphql, "== 1.0.0-rc.0", only: [:dev, :test]},
{:ash_json_api, "== 1.0.0-rc.0", only: [:dev, :test]},
{:ash_postgres, "== 2.0.0-rc.3", optional: true},
2022-09-28 10:23:40 +13:00
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.2", only: [:dev, :test], runtime: false},
2022-09-28 10:11:00 +13:00
{:doctor, "~> 0.18", only: [:dev, :test]},
{:ex_check, "~> 0.15", only: [:dev, :test]},
{:ex_doc, ">= 0.0.0", only: [:dev, :test]},
{:faker, "~> 0.18.0", only: [:dev, :test]},
{:git_ops, "~> 2.4", only: [:dev, :test], runtime: false},
{:mimic, "~> 1.7", only: [:dev, :test]},
{:mix_audit, "~> 2.1", only: [:dev, :test]},
{:plug_cowboy, "~> 2.5", only: [:dev, :test]},
{:sobelow, "~> 0.12", only: [:dev, :test]}
2022-09-28 09:54:05 +13:00
]
end
2022-09-28 10:23:40 +13:00
defp aliases do
extensions = [
"AshAuthentication",
"AshAuthentication.AddOn.Confirmation",
"AshAuthentication.Strategy.Auth0",
"AshAuthentication.Strategy.Github",
"AshAuthentication.Strategy.Google",
"AshAuthentication.Strategy.MagicLink",
"AshAuthentication.Strategy.OAuth2",
"AshAuthentication.Strategy.Oidc",
"AshAuthentication.Strategy.Password",
"AshAuthentication.TokenResource",
"AshAuthentication.UserIdentity"
]
2022-09-28 10:23:40 +13:00
[
ci: [
"format --check-formatted",
"doctor --full --raise",
2022-09-28 10:23:40 +13:00
"credo --strict",
"dialyzer",
"hex.audit",
"test"
],
"spark.formatter": "spark.formatter --extensions #{Enum.join(extensions, ",")}",
"spark.cheat_sheets": "spark.cheat_sheets --extensions #{Enum.join(extensions, ",")}",
2023-09-27 16:42:46 +13:00
"spark.cheat_sheets_in_search":
"spark.cheat_sheets_in_search --extensions #{Enum.join(extensions, ",")}",
docs: [
"spark.cheat_sheets",
"docs",
"spark.cheat_sheets_in_search",
"spark.replace_doc_links"
],
test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"]
2022-09-28 10:23:40 +13:00
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(:dev), do: ["lib", "test/support", "dev"]
defp elixirc_paths(_), do: ["lib"]
defp ash_version(default_version) do
case System.get_env("ASH_VERSION") do
nil -> default_version
"local" -> [path: "../ash", override: true]
"main" -> [git: "https://github.com/ash-project/ash.git", override: true]
version -> "~> #{version}"
end
end
2022-09-28 09:54:05 +13:00
end