### Add Phoenix.Template to Dependencies Source: https://github.com/phoenixframework/phoenix_template/blob/main/README.md This code snippet shows how to add the phoenix_template package as a dependency in your Elixir project's `mix.exs` file. This is the standard way to include external libraries in Elixir projects. ```elixir def deps do [ {:phoenix_template, "~> 1.0"} ] end ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.