Packages

A powerful Phoenix/Elixir plug that provides route discovery, rule-based request filtering, and a beautiful LiveView dashboard for managing route access controls.

Current section

Files

Jump to
Raw

mix.exs

defmodule RouteShield.MixProject do
use Mix.Project
def project do
[
app: :route_shield,
version: "0.1.0",
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
deps: deps(),
description:
"A powerful Phoenix/Elixir plug that provides route discovery, rule-based request filtering, and a beautiful LiveView dashboard for managing route access controls.",
package: package(),
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/half-blood-labs/route_shield"
},
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
defp package do
[
files: ["lib", "priv", "mix.exs", "README.md", "LICENSE*"],
maintainers: ["Junaid Farooq"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/half-blood-labs/route_shield"
}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {RouteShield.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:phoenix, "~> 1.7"},
{:phoenix_live_view, "~> 0.20 or ~> 1.0"},
{:ecto_sql, "~> 3.11"},
{:plug, "~> 1.14"},
{:jason, "~> 1.4"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:ex_unit_notifier, "~> 1.0", only: :test},
{:mox, "~> 1.0", only: :test}
]
end
end