https://github.com/homologist/mangopay-elixir
Elixir plugin for mangopay API V2
https://github.com/homologist/mangopay-elixir
elixir mangopay payment payment-gateway
Last synced: 4 months ago
JSON representation
Elixir plugin for mangopay API V2
- Host: GitHub
- URL: https://github.com/homologist/mangopay-elixir
- Owner: Homologist
- License: mit
- Created: 2018-02-11T21:56:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-16T17:22:28.000Z (about 8 years ago)
- Last Synced: 2025-11-21T19:31:22.430Z (7 months ago)
- Topics: elixir, mangopay, payment, payment-gateway
- Language: Elixir
- Size: 422 KB
- Stars: 2
- Watchers: 0
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [](https://circleci.com/gh/Homologist/mangopay-elixir) [](https://raw.githubusercontent.com/circleci/circleci-docs/master/LICENSE) [](https://coveralls.io/github/Homologist/mangopay-elixir?branch=master) [](http://inch-ci.org/github/Homologist/mangopay-elixir) [](https://hex.pm/packages/mangopay)
# MangoPay
**TODO: Add description**
## Installation
An Elixir library for [MangoPay](https://mangopay.com/).
The package can be installed by adding `mangopay` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:mangopay, "~> 0.1.0"}
]
end
```
## Usage
Install the dependency:
```ex
{:mangopay, "~> 0.1.0"}
```
Next, add to your applications:
```ex
defp application do
[applications: [:mangopay]]
end
```
## Configuration
To call mangopay your needs your client id and passphrase.
```ex
use Mix.Config
config :mangopay, client_id: "YOUR CLIENT ID"
config :mangoapy, passphrase: "YOUR KEY"
```
## The API
The full documentation of the API is avaiable [here](https://hexdocs.pm/mangopay/api-reference.html)
## Contributing
Feedback, feature requests are welcome.
## License
Please see [LICENSE](LICENSE) for licensing details.