Packages
phoenix_min
0.1.0
A post-installation tool that converts a default Phoenix installation to use LiveView-only with inline HEEx templates, removing controller-based infrastructure.
Current section
Files
Jump to
Current section
Files
phoenix_min
mix.exs
mix.exs
defmodule PhoenixMin.MixProject do
use Mix.Project
@version "0.1.0"
@source_url "https://github.com/steefmin/phoenix_min"
def project do
[
name: "PhoenixMin",
app: :phoenix_min,
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
docs: docs()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:igniter, "~> 0.6", optional: true},
{:sourceror, "~> 1.0", runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp description do
"""
A post-installation tool that converts a default Phoenix installation to use
LiveView-only with inline HEEx templates, removing controller-based infrastructure.
"""
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => @source_url},
maintainers: ["Steef Min"],
]
end
defp docs do
[
main: "readme",
source_url: @source_url,
extras: ["README.md"]
]
end
end