PHPackages                             cloudstek/mollie-php-api - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. cloudstek/mollie-php-api

AbandonedLibrary[API Development](/categories/api)

cloudstek/mollie-php-api
========================

Mollie API client library for PHP

2.0.1(9y ago)35371BSD-2-ClausePHPPHP &gt;=5.3

Since Aug 23Pushed 9y ago2 watchersCompare

[ Source](https://github.com/Cloudstek/mollie-php-api)[ Packagist](https://packagist.org/packages/cloudstek/mollie-php-api)[ Docs](https://github.com/cloudstek/mollie-php-api)[ RSS](/packages/cloudstek-mollie-php-api/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (7)Versions (7)Used By (0)

Mollie PHP API client
=====================

[](#mollie-php-api-client)

[![Travis](https://camo.githubusercontent.com/10d0d8fe208e738f81399c9150dedb95cd14749c85fb73a2b3a747bbf04a595b/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f436c6f75647374656b2f6d6f6c6c69652d7068702d6170692e737667)](https://travis-ci.org/Cloudstek/mollie-php-api) [![Code Climate](https://camo.githubusercontent.com/783fc3b16417af6ca400aedd1560adab6fc6a92736e72c6697bb91f00cd410f0/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636c696d6174652f6769746875622f436c6f75647374656b2f6d6f6c6c69652d7068702d6170692e737667)](https://codeclimate.com/github/Cloudstek/mollie-php-api) [![Test Coverage](https://camo.githubusercontent.com/a70be8335fd391fdd11a626d0c7c3f0d82349f795239b6643492525982f7b5a2/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636c696d6174652f636f7665726167652f6769746875622f436c6f75647374656b2f6d6f6c6c69652d7068702d6170692e737667)](https://codeclimate.com/github/Cloudstek/mollie-php-api/coverage) [![Code Climate](https://camo.githubusercontent.com/acfcb10fac9255a93007d250045b028b3a4149db48fd6a9ddea5c824dadc8f4d/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636c696d6174652f6973737565732f6769746875622f436c6f75647374656b2f6d6f6c6c69652d7068702d6170692e737667)](https://codeclimate.com/github/Cloudstek/mollie-php-api/issues) [![Downloads](https://camo.githubusercontent.com/e01b89d341e8e58bc3e7bf40d47902adaa92885e3db5e1f42d3ca08659a06a90/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636c6f75647374656b2f6d6f6c6c69652d7068702d6170692e737667)](https://packagist.org/packages/cloudstek/mollie-php-api) [![Latest Version](https://camo.githubusercontent.com/0f15e945506a8526c1753b4d8d6bef0afb4f62ea825c7dde847ec64b50dc14cc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f636c6f75647374656b2f6d6f6c6c69652d7068702d6170692e737667)](https://packagist.org/packages/cloudstek/mollie-php-api)

Simple to use, modern and well-tested PHP API client for [Mollie](https://www.mollie.com/nl/docs/overview).

Requirements
------------

[](#requirements)

- PHP 5.3 or newer
- PHP cURL extension (with SSL)
- PHP xdebug extension (optional, for unit tests)
- [Composer](https://getcomposer.org)
- Active website profile at Mollie.com (see: [Mollie Documentation](https://www.mollie.com/en/docs/authentication))

Features
--------

[](#features)

Currently all API functions that don't require oauth authentication are supported. This means you can use this API client for everything except managing organizations, profiles, permissions and settlements.

- Payments
    - Payment methods
    - Issuers
    - Refunds
    - Recurring payments
- Customers
    - Mandates
    - Subscriptions

Installation
------------

[](#installation)

The Mollie PHP API client is available as composer package. Installation is as simple as requiring the package for your project.

```
composer require cloudstek/mollie-php-api
```

You can also manually add the package to your projects composer.json requirements:

```
{
  "require": {
    "cloudstek/mollie-php-api": "^2.0.1"
  }
}
```

Next, require the composer autoloader in your project:

```
