defmodule Phoenix.Mixfile do use Mix.Project @version "0.16.0" def project do [app: :phoenix, version: @version, elixir: "~> 1.0.2 or ~> 1.1-dev", deps: deps, package: package, docs: [source_ref: "v#{@version}", main: "Phoenix"], name: "Phoenix", source_url: "https://github.com/phoenixframework/phoenix", homepage_url: "http://www.phoenixframework.org", description: """ Productive. Reliable. Fast. A productive web framework that does not compromise speed and maintainability. """] end def application do [mod: {Phoenix, []}, applications: [:plug, :poison, :logger, :eex], env: [template_engines: [], format_encoders: [], filter_parameters: ["password"], serve_endpoints: false, gzippable_exts: ~w(.js .css .txt .text .html .json)]] end defp deps do [{:cowboy, "~> 1.0", optional: true}, {:plug, "~> 0.14 or ~> 1.0"}, {:poison, "~> 1.3"}, # Docs dependencies {:earmark, "~> 0.1", only: :docs}, {:ex_doc, "~> 0.7.1", only: :docs}, {:inch_ex, "~> 0.2", only: :docs}, # Test dependencies {:phoenix_html, "~> 1.2", only: :test}, {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test}] end defp package do [contributors: ["Chris McCord", "Darko Fabijan", "José Valim"], licenses: ["MIT"], links: %{github: "https://github.com/phoenixframework/phoenix"}, files: ~w(lib priv test/shared web) ++ ~w(brunch-config.js CHANGELOG.md LICENSE mix.exs package.json README.md)] end end