Omnipay iDeal for Laravel 4
This package uses the classes from omnipay-ideal, (*1)
Generate hashes from numbers, like YouTube or Bitly.
Use hashids when you do not want to expose your database ids to the user., (*2)
Installation
Begin by installing the package through Composer. Edit your project's composer.json file to require markdegroot/omnipay-ideal., (*3)
php
"require": {
"markdegroot/omnipay-ideal": "1.x"
}, (*4)
Next use Composer to update your project from the the Terminal:, (*5)
bash
php composer.phar update, (*6)
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., (*7)
php
'Markdegroot\OmnipayIdeal\OmnipayIdealServiceProvider', (*8)
After doing this you also need to add an alias. In your app/config/app.php file, add this to the aliases array., (*9)
php
'Ideal' => 'Markdegroot\OmnipayIdeal\Ideal', (*10)
Now last but not least you need to publish to package configuration from your Terminal:, (*11)
bash
php artisan config:publish markdegroot/omnipay-ideal, (*12)