markdegroot / omnipay-ideal
Laravel wrapper for omnipay-ideal
Requires
- php: >=5.4.0
- illuminate/support: ~4
- omnipay/ideal: ~1.0
This package is not auto-updated.
Last update: 2024-11-05 03:30:16 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