Download the PHP package petericebear/laravel-mollie without Composer

On this page you can find all versions of the php package petericebear/laravel-mollie. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-mollie

Mollie API wrapper for Laravel 5.x

This is a package to integrate Mollie with Laravel 5.x. You can use it to easily manage your configuration, and use the Facade to provide shortcuts to the Mollie Client.

Build Status StyleCI Code Coverage Total Downloads Latest Version

Requirements

To use the Mollie API client, the following things are required:

Installation

Via Composer

After updating composer, add the MollieServiceProvider to the providers array in config/app.php

You need to publish the config for this package. A sample configuration is provided. The defaults will be merged with gateway specific configuration.

To use the Facade (\Mollie::getMethods() instead of App::make('mollie')->getMethods()), add that to the facades array.

Usage of the wrapper

Creating a new payment.

After creation, the payment id is available in the $payment->id property. You should store this id with your order.

Retrieving a payment.

Fully integrated iDEAL payments

If you want to fully integrate iDEAL payments in your web site, some additional steps are required. First, you need to retrieve the list of issuers (banks) that support iDEAL and have your customer pick the issuer he/she wants to use for the payment.

Retrieve the list of issuers:

_$issuers will be a list of Mollie_API_Object_Issuer objects. Use the property $id of this object in the API call, and the property $name for displaying the issuer to your customer.

Create a payment with the selected issuer:

The links property of the $payment object will contain a string paymentUrl, which is a URL that points directly to the online banking environment of the selected issuer.

Refunding payments

The API also supports refunding payments. Note that there is no confirmation and that all refunds are immediate and definitive. Refunds are only supported for iDEAL, credit card, Bancontact/Mister Cash, SOFORT Banking and bank transfer payments. Other types of payments cannot be refunded through our API at the moment.

More information

Please use the official documentation of Mollie of one off the following resources:


All versions of laravel-mollie with dependencies

PHP Build Version
Package Version
Requires illuminate/support Version 5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0
mollie/mollie-api-php Version ~1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package petericebear/laravel-mollie contains the following files

Loading the files please wait ....