ash_authentication/mix.exs

263 lines
8.9 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
@description """
Authentication extension for the Ash Framework.
"""
2024-09-02 09:31:47 +12:00
@version "4.0.4"
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,
2022-09-28 09:54:05 +13:00
elixir: "~> 1.13",
consolidate_protocols: Mix.env() == :prod,
2022-09-28 09:54:05 +13:00
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
package: package(),
deps: deps(),
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: docs(),
aliases: aliases(),
description: @description,
preferred_cli_env: [ci: :test],
consolidate_protocols: Mix.env() == :prod
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]
defp docs do
[
main: "readme",
source_ref: "v#{@version}",
logo: "logos/ash-auth-small-logo.png",
extra_section: ["GUIDES"],
extras: [
{"README.md", name: "Home"},
"documentation/tutorials/get-started.md",
"documentation/tutorials/auth0.md",
"documentation/tutorials/github.md",
"documentation/tutorials/google.md",
"documentation/tutorials/magic-links.md",
"documentation/tutorials/confirmation.md",
"documentation/topics/custom-strategy.md",
"documentation/topics/policies-on-authentication-resources.md",
"documentation/topics/testing.md",
"documentation/topics/tokens.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",
"CHANGELOG.md"
],
groups_for_extras: [
"Start Here": [
"documentation/home.md",
"documentation/tutorials/get-started.md"
],
Tutorials: ~r"documentation/tutorials",
Topics: ~r"documentation/topics",
"How To": ~r"documentation/how-to",
Reference: ~r"documentation/dsls"
],
skip_undefined_reference_warnings_on: [
"CHANGELOG.md"
],
nest_modules_by_prefix: [],
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,
filter_modules: ~r/^Elixir.AshAuthentication/,
source_url_pattern:
"https://github.com/team-alembic/ash_authentication/blob/main/%{path}#L%{line}",
groups_for_modules: [
Extensions: [
AshAuthentication,
AshAuthentication.TokenResource,
AshAuthentication.UserIdentity
],
Strategies: [
AshAuthentication.Strategy,
AshAuthentication.AddOn.Confirmation,
AshAuthentication.Strategy.Auth0,
AshAuthentication.Strategy.Custom,
AshAuthentication.Strategy.Github,
AshAuthentication.Strategy.Google,
AshAuthentication.Strategy.MagicLink,
AshAuthentication.Strategy.OAuth2,
AshAuthentication.Strategy.Oidc,
AshAuthentication.Strategy.Password
],
Cryptography: [
AshAuthentication.HashProvider,
AshAuthentication.BcryptProvider,
AshAuthentication.Jwt
],
Introspection: [
AshAuthentication.Info,
AshAuthentication.TokenResource.Info,
AshAuthentication.UserIdentity.Info
],
Utilities: [
AshAuthentication.Debug,
AshAuthentication.Secret,
AshAuthentication.Sender,
AshAuthentication.Supervisor
],
Plugs: [
AshAuthentication.Plug,
AshAuthentication.Plug.Helpers
],
"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/
],
Internals: ~r/.*/
]
]
end
2022-09-28 09:54:05 +13:00
# Run "mix help deps" to learn about dependencies.
defp deps do
[
2024-05-11 09:40:58 +12:00
{:ash, ash_version("~> 3.0")},
{:assent, "~> 0.2 and >= 0.2.8"},
{:bcrypt_elixir, "~> 3.0"},
{:castore, "~> 1.0"},
{:finch, "~> 0.19.0"},
{:jason, "~> 1.4"},
{:joken, "~> 2.5"},
{:plug, "~> 1.13"},
{:spark, "~> 2.0"},
{:splode, "~> 0.2"},
{:absinthe_plug, "~> 1.5", only: [:dev, :test]},
chore(deps-dev): Bump the dev-dependencies group across 1 directory with 5 updates (#779) Bumps the dev-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [ash_graphql](https://github.com/ash-project/ash_graphql) | `1.2.0` | `1.3.3` | | [ash_json_api](https://github.com/ash-project/ash_json_api) | `1.3.3` | `1.4.6` | | [ex_doc](https://github.com/elixir-lang/ex_doc) | `0.34.1` | `0.34.2` | | [mimic](https://github.com/edgurgel/mimic) | `1.8.2` | `1.9.0` | | [mix_audit](https://github.com/mirego/mix_audit) | `2.1.3` | `2.1.4` | Updates `ash_graphql` from 1.2.0 to 1.3.3 - [Changelog](https://github.com/ash-project/ash_graphql/blob/main/CHANGELOG.md) - [Commits](https://github.com/ash-project/ash_graphql/compare/v1.2.0...v1.3.3) Updates `ash_json_api` from 1.3.3 to 1.4.6 - [Changelog](https://github.com/ash-project/ash_json_api/blob/main/CHANGELOG.md) - [Commits](https://github.com/ash-project/ash_json_api/compare/v1.3.3...v1.4.6) Updates `ex_doc` from 0.34.1 to 0.34.2 - [Release notes](https://github.com/elixir-lang/ex_doc/releases) - [Changelog](https://github.com/elixir-lang/ex_doc/blob/main/CHANGELOG.md) - [Commits](https://github.com/elixir-lang/ex_doc/compare/v0.34.1...v0.34.2) Updates `mimic` from 1.8.2 to 1.9.0 - [Release notes](https://github.com/edgurgel/mimic/releases) - [Commits](https://github.com/edgurgel/mimic/compare/v1.8.2...v1.9.0) Updates `mix_audit` from 2.1.3 to 2.1.4 - [Changelog](https://github.com/mirego/mix_audit/blob/main/CHANGELOG.md) - [Commits](https://github.com/mirego/mix_audit/compare/v2.1.3...v2.1.4) --- updated-dependencies: - dependency-name: ash_graphql dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: ash_json_api dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: ex_doc dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: mimic dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: mix_audit dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-02 09:06:25 +12:00
{:ash_graphql, "~> 1.3.3", only: [:dev, :test]},
{:ash_json_api, "~> 1.4.6", only: [:dev, :test]},
2024-05-11 09:40:58 +12:00
{:ash_postgres, "~> 2.0", 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