Stripe (Checkout) driver for the Omnipay PHP payment processing library
Omnipay implementation of the Stripe payment gateway using their "Checkout" process.
There are two versions of this driver; one is compatible with Omnipay v3, the other with Omnipay v2.
If any changes are made to one, please make sure those changes are ported to the other, where appropriate.
This is the master branch, and is released as v3.*.*
Please note, the maintainers of this package have no (easy) way of testing this version and rely on any contributors testing their changes.
This is the omnipay-v2 branch, and (for historical reasons) is released as v1.*.*
Important: Driver requires PHP's Intl extension and PHP's SOAP extension to be installed.
The Stripe (Checkout) Omnipay driver is installed via Composer. To install, simply add it
to your composer.json
file:
{
"require": {
"digitickets/omnipay-stripe-checkout": "~3.0"
}
}
{
"require": {
"digitickets/omnipay-stripe-checkout": "~1.0"
}
}
And run composer to update your dependencies:
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update
This driver handles transactions being processed by the "Checkout" process of Stripe.
It is Strong Customer Authentication-aware.
It assumes you will use the redirect method in the browser page (ie that you will not host the card form yourself).
We have done the minimum necessary to get our system to work. If you need any further functionality, please submit a pull request (or ask us to make the change)
It supports refunds, but currently it only handles refunding the full amount of a transaction.
Note: the Stripe API does not support negative- or zero-value items, so this driver filters them out. Be aware that the amount the customer pays is only calculated from that filtered set of items, so if there are deductions, etc in your cart, they will not be taken off the payment amount. And of course zero-value items will not be shown on the card form.
TBC
For general Omnipay usage instructions, please see the main Omnipay repository.
If you are having general issues with Omnipay, we suggest posting on Stack Overflow. Be sure to add the omnipay tag so it can be easily found.
If you believe you have found a bug in this driver, please report it using the GitHub issue tracker, or better yet, fork the library and submit a pull request.