Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Pfaker.MixProject do
use Mix.Project
def project do
[
app: :pfaker,
version: "0.1.0",
elixir: "~> 1.14",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "Pfaker",
description: "Small library for fake data",
source_url: "https://github.com/alekpopovic/pfaker",
package: [
licenses: ["MIT"],
links: %{
"github" => "https://github.com/alekpopovic/pfaker"
}
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: { Pfaker.Runtime.Application, [] },
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end