Download the PHP package verschoof/bunq-api-bundle without Composer
On this page you can find all versions of the php package verschoof/bunq-api-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download verschoof/bunq-api-bundle
More information about verschoof/bunq-api-bundle
Files in verschoof/bunq-api-bundle
Download verschoof/bunq-api-bundle
More information about verschoof/bunq-api-bundle
Files in verschoof/bunq-api-bundle
Vendor verschoof
Package bunq-api-bundle
Short Description Implements the bunq-api into your Symfony application
License MIT
Package bunq-api-bundle
Short Description Implements the bunq-api into your Symfony application
License MIT
Please rate this library. Is it a good library?
Informations about the package bunq-api-bundle
bunq api bundle
A Symfony2 bundle to implement the bunq client
Installation
Require the package
composer require verschoof/bunq-api-bundle
Register bundle in the AppKernel
$bundles = array(
...
new Verschoof\BunqApiBundle\BunqApiBundle(),
...
)
Add configuration to your config.yml
bunq_api:
storage_location: "var/data/bunq"
key: "Api key"
uri: "End point"
permitted_ips: "List of permitted ips"
Make sure the private and public certificate exists
cd var/data/bunq/certificates/
openssl genpkey -algorithm RSA -out private.pem -pkeyopt rsa_keygen_bits:2048 && openssl rsa -pubout -in private.pem -out public.pem
Don't forget to make var/data/bunq
as symlink so your installation tokens/certificates are not gone after a deploy.
Usage
See Resources/config/service.yml
for the availble resources
$paymentResource = $this->get('bunq_payment_resource');
$listOfPayments = $paymentResource->listPayments(1, 1);
See https://github.com/verschoof/bunq-api for more information
All versions of bunq-api-bundle with dependencies
PHP Build Version
Package Version
Requires
verschoof/bunq-api Version
^2.0
The package verschoof/bunq-api-bundle contains the following files
Loading the files please wait ....