Download the PHP package sander-van-hooft/laravel-payable-redirect-mollie without Composer

On this page you can find all versions of the php package sander-van-hooft/laravel-payable-redirect-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-payable-redirect-mollie

Associate Mollie payments with Eloquent models

Latest Version on Packagist Build Status Code Quality Total Downloads

Implementing Mollie payments in your Laravel 5.4 app does not have to be difficult. This package helps you by creating payment records and keeping the status in sync with Mollie. It is built on top of the very solid official Mollie PHP client. It supports one-off payments only; recurring payments are not (yet) supported.

Structure

Install

Via Composer

Next, you must install the service provider:

And add the Mollie API key to the .env file in your project root. This is also where you can override the webhook route which Mollie calls when a payment status is updated:

You can publish the migration with:

After the migration has been published you can create the payments-table by running the migrations:

Laravel automatically loads the routes from this package.

If you prefer this over configuring using the .env file (not required!) you can also publish the payable.php config file with:

In the config file, you can set the MOLLIE api key and override the default mollie payment webhook route. This is what the default config file looks like:

Usage

Basic usage

In your code, create a Payment record using the MolliePaymentGateway:

The payment amount is in eurocents!

The payment status will be kept in sync with Mollie: Mollie will call the webhook whenever the payment status changes. This will trigger your app to fetch the latest payment status from Mollie. Mollie has designed this process in this way for security reasons.

IsPayableTrait

For convenience you can use the isPayableTrait on your payable Eloquent model (the App\Order model in the example above). This enables you to call $order->payments.

Events

PaymentEvents are dispatched for easy integration with your own custom listeners (see Laravel events and listeners). The following events are available:

Change log

Please see CHANGELOG for more information on what has changed recently.

Testing

Please mind that for testing the payment status synchronisation your app needs to be reachable on a public url by Mollie. Therefore, under normal circumstances, you cannot fully test this functionality on a local Laravel installation.

Make sure to configure the Mollie API key (MOLLIE_KEY) as an environment variable. This can for example be done in the phpunit.xml file.

Contributing

Please see CONDUCT for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-payable-redirect-mollie with dependencies

PHP Build Version
Package Version
Requires illuminate/database Version ^5.4
illuminate/support Version ^5.4
guzzlehttp/guzzle Version ^6.2
mollie/mollie-api-php Version 1.9.*
php Version ~5.6|~7.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 sander-van-hooft/laravel-payable-redirect-mollie contains the following files

Loading the files please wait ....