defmodule PhoenixKitCustomerSupport.MixProject do use Mix.Project @version "0.2.0" @source_url "https://github.com/BeamLabEU/phoenix_kit_customer_support" def project do [ app: :phoenix_kit_customer_support, version: @version, elixir: "~> 1.18", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, deps: deps(), aliases: aliases(), description: "Customer support ticketing module for PhoenixKit", package: package(), dialyzer: [plt_add_apps: [:phoenix_kit]], name: "PhoenixKitCustomerSupport", source_url: @source_url, homepage_url: @source_url, docs: docs() ] end def application do [ extra_applications: [:logger, :gettext, :phoenix_kit] ] end defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["lib"] defp aliases do [ quality: ["format", "credo --strict", "dialyzer"], "quality.ci": ["format --check-formatted", "credo --strict", "dialyzer"], precommit: [ "compile --force --warnings-as-errors", "deps.unlock --check-unused", # Scan for retired Hex deps. Run via `cmd` so Hex bootstraps in a fresh # process — the hex.* archive tasks aren't resolvable via Mix.Task.run # inside an alias. "cmd mix hex.audit", "quality.ci" ] ] end defp deps do [ # Core 2.x only. Keep this a TWO-segment `~> 2.0`: a three-segment # `~> 2.0.x` would expand to `< 2.1.0` and exclude every later core # minor, which is the failure mode `test/core_pin_conformance_test.exs` # guards. Nothing here touches core migration internals — this module # declares no `migration_module/0` and its tables come from core's own # chain — so the requirement is the whole compatibility contract. {:phoenix_kit, "~> 2.0"}, {:gettext, "~> 1.0"}, {:phoenix_live_view, "~> 1.1"}, {:ex_doc, "~> 0.34", only: :dev, runtime: false}, {:credo, "~> 1.7", only: [:dev, :test], runtime: false}, {:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false} ] end defp package do [ licenses: ["MIT"], links: %{"GitHub" => @source_url}, files: ~w(lib priv/gettext .formatter.exs mix.exs README.md CHANGELOG.md LICENSE) ] end defp docs do [ main: "readme", source_ref: "v#{@version}", source_url: @source_url, extras: ["README.md", "CHANGELOG.md", "LICENSE"] ] end end