forked from emilsoman/gh_webhook_plug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
44 lines (39 loc) · 904 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
defmodule GithubWebhookAuthenticationPlug.Mixfile do
use Mix.Project
def project do
[
app: :github_webhook_authentication_plug,
version: "0.0.3",
elixir: "~> 1.1",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description(),
package: package(),
deps: deps(),
]
end
def application do
[
applications: [:plug, :logger],
]
end
defp deps do
[
{:plug, "~>1.1"},
]
end
defp description do
"""
This Plug makes it easy to authenticate Github webhook requests
in your Elixir apps.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README.md"],
maintainers: ["Robin Daugherty", "Emil Soman"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/RobinDaugherty/github_webhook_authentication_plug"},
]
end
end