markdegroot/omnipay-ideal

There is no license information available for the latest version (1.0.1) of this package.

Laravel wrapper for omnipay-ideal

1.0.1 2014-12-03 20:00 UTC

This package is not auto-updated.

Last update: 2024-04-23 00:53:22 UTC


README

This package uses the classes from omnipay-ideal

Generate hashes from numbers, like YouTube or Bitly. Use hashids when you do not want to expose your database ids to the user.

Installation

Begin by installing the package through Composer. Edit your project's composer.json file to require markdegroot/omnipay-ideal.

"require": {
  "markdegroot/omnipay-ideal": "1.x"
}

Next use Composer to update your project from the the Terminal:

php composer.phar update

Once the package has been installed you'll need to add the service provider. Open your app/config/app.php configuration file, and add a new item to the providers array.

'Markdegroot\OmnipayIdeal\OmnipayIdealServiceProvider'

After doing this you also need to add an alias. In your app/config/app.php file, add this to the aliases array.

'Ideal' => 'Markdegroot\OmnipayIdeal\Ideal'

Now last but not least you need to publish to package configuration from your Terminal:

php artisan config:publish markdegroot/omnipay-ideal