Download the PHP package omnipay/sagepay without Composer

On this page you can find all versions of the php package omnipay/sagepay. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package sagepay

Omnipay: Sage Pay (now Opayo by Elavon)

Sage Pay/Opayo driver for the Omnipay PHP payment processing library

Unit Tests Latest Stable Version Total Downloads

Omnipay is a framework agnostic, multi-gateway payment processing library for PHP. This package implements Sage Pay support for Omnipay. This version supports PHP ^7.3 and PHP ^8.

This is the master branch of Omnipay, handling Omnipay version 3.x. For the 2.x branch, please visit https://github.com/thephpleague/omnipay-sagepay/tree/2.x

From version 4.1.1 the new Opayo URLs are used in place of the old Sage Pay URLs. These new URLs will be mandatory from March 2023, so you must upgrade by then. The upgrade 4.0 to 4.1.1 should be seamless; all classes remain in the Omnipay\SagePay namespace.

Table of Contents

Installation

Omnipay is installed via Composer. To install, simply add it to your composer.json file:

And run composer to update your dependencies:

$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update

Basic Usage

The following gateways are provided by this package:

For general Omnipay usage instructions, please see the main Omnipay repository.

Supported Methods

Sage Pay Direct Methods

Sage Pay Direct is a server-to-server protocol, with all credit card details needing to pass through your application for forwarding on to the gateway. You must be aware of the PCI implications of handling credit card details if using this API.

The Direct gateway methods for handling cards are:

Note: PayPal is not yet implemented in this driver.

Direct Authorize/Purchase

At this point you will have either a final result or a redirect.

If $responseMessage->isSuccessful() is true, then the authorization is complete and successful. If false then check for a redirect, otherwise the authorization was not successful.

Redirect (3D Secure)

If the authorization result is a redirect, then a quick and dirty way to redirect is:

That redirect() method is intended just for demonstration or testing. Create your own instead, within your framework, using these helpers:

Redirect Return

After the user has performed their 3D Secure authentication, they will be redirected (via POST) back to your returnUrl endpoint. The transaction is not yet complete. It must be completed like this:

The $transactionId (same as created for the original purchase()) is only needed if you want to save getTransactionReference() for future repeat payments.

The normal getters will be available here to check the result, get the cardReference for saving etc.

Direct Create Card

This will create a card reference with no authorization. If you want to authorize an amount on the card and get a cardReference for repeated use of the card, then use the authorize() method with the createToken flag set.

Sample code using Sage Pay Direct to create a card reference:

Sage Pay Server Methods

Sage Pay Server captures any credit card details in forms hosted by the Sage Pay gateway, either by sending the user to the gateway or loading the hosted forms in an iframe. This is the preferred and safest API to use.

Sage Pay Server uses your IP address to authenticate backend access to the gateway, and it also needs to a public URL that it can send back-channel notifications to. This makes development on a localhost server difficult.

Server Gateway

All Sage Pay Server methods start by creating the gateway object, which we will store in $gateway here. Note there are no secrets or passwords that need to be set, as the gateway uses your server's IP address as its main method of authenticating your application.

The gateway object is minimally created like this:

Server Authorize/Purchase

This method authorizes a payment against a credit or debit card. A cardToken or cardReference previously captured, can be used here, and only the user's CVV will be asked for, but the overall flow will remain the same.

The $creditCard object will provide the billing and shipping details:

Server Create Card

When creating a cardReference, for Sage Pay Server the reference will be available only in the notification callback.

Sample code using Sage Pay Server to create a card reference:

At this point the user will be redirected to enter their CC details. The details will be held by the gateway and a token sent to the notification handler, along with the transactionId. The notification handler needs to store the cardReference or token referenced by the transactionId then acknowledge the acceptance and provide a final URL the user is taken to.

If using an iframe for the hosted credit card form, then on return to the final redirect URL (provided by the notification handler) it is your site's responsibility to break out of the iframe.

Server Notification Handler

NOTE: The notification handler was previously handled by the SagePay_Server completeAuthorize, completePurchase and completeRegistration methods. The notification handler replaces all of these.

The SagePay_Server gateway uses a notification callback to receive the results of a payment or authorization. Sage Pay Direct does not use the notification handler.

Unlike many newer gateways, this notification handler is not just an optional callback providing an additional channel for events. It is required for the Server gateway, and not used for the direct gateway at all.

The URL for the notification handler is set in the authorize or payment message:

Your notification handler needs to do four things:

  1. Look up the saved transaction in the database to retrieve the securityKey.
  2. Validate the signature of the received notification to protect against tampering.
  3. Update your saved transaction with the results.
  4. Respond to Sage Pay to indicate that you accept the result, reject the result or don't believe the notification was valid. Also tell Sage Pay where to send the user next.

This is a back-channel (server-to-server), so has no access to the end user's session.

The acceptNotification gateway is set up simply. The $request will capture the POST data sent by Sage Pay:

Your original transactionId is available to look up the transaction in the database:

Now the signature can be checked:

If you were not able to look up the transaction or the transaction is in the wrong state, then indicate this with an error. Note an "error" is to indicate that although the notification appears to be legitimate, you do not accept it or cannot handle it for any reason:

Note: it has been observed that the same notification message may be sent by Sage Pay multiple times. If this happens, then return the same response you sent the first time. So if you have confirmed a successful payment, then if you get another identical notification for the transaction, then return confirm() again.

If you accept the notification, then you can update your local records and let Sage Pay know:

The $nextUrl is where you want Sage Pay to send the user to next. It will often be the same URL whether the transaction was approved or not, since the result will be safely saved in the database.

The confirm(), error() and reject() methods will all echo the expected return payload and expect your application to return a HTTP Status 200 without adding any further content.

These functions used to exit the application immediately to prevent additional output being added to the response. You can restore this functionality by setting the exitOnResponse option:

If you just want the body payload, this method will return it without echoing it. You must return it with a 200 HTTP Status Code:

Sage Pay Form Methods

Sage Pay Form requires neither a server-to-server back-channel nor IP-based security. It does not require pre-registration of a transaction, so is ideal for a speculative "pay now" button on a page for instant purchases of a product or service. Unlike Direct and Server, it does not support saved card references or tokens.

The payment details are encrypted on the server before being sent to the gateway from the user's browser. The result is returned to the merchant site also through a client-side encrypted message.

Capturing and voiding Form transactions is a manual process performed in the "My Sage Pay" administration panel.

Supported functions are:

Form Authorize

The authorization is intialized in a similar way to a Server payment, but with an encryptionKey:

The encryptionKey is generated in "My Sage Pay" when logged in as the administrator.

Note that this gateway driver will assume all input data (names, addresses etc.) are UTF-8 encoded. It will then recode the data to ISO8859-1 before encrypting it for the gateway, since the gateway strictly accepts ISO8859-1 only, regardless of what encoding is used to submit the form from the merchant site. If you do not want this conversion to happen, it can be disabled with this parameter:

'disableUtf8Decode' => true,

The authorize must be given a returnUrl (the return URL on success, or on failure if no separate failureUrl is provided).

The $response will be a POST redirect, which will take the user to the gateway. At the gateway, the user will authenticate or authorize their credit card, perform any 3D Secure actions that may be requested, then will return to the merchant site.

Like Server and Direct, you can use either the DEFERRED or the AUTHENTICATE method to reserve the amount.

Form completeAuthorize

To get the result details, the transaction is "completed" on the user's return. This will be at your returnUrl endpoint:

Note that if send() throws an exception here due to a transactionId mismatch, you can still access the decryoted data that was brought back with the user as $completeRequest->getData(). You will need to log this for later analysis.

If you already have the encrypted response string, then it can be passed in. However, you would normally leave it for the driver to read it for you from the current server request, so the following would not normally be necessary:

$crypt = $_GET['crypt']; // or supplied by your framework
$result = $gateway->completeAuthorize(['crypt' => $crypt])->send();

This is handy for testing or if the current page query parameters are not available in a particular architecture.

It is important to make sure this result is what was expected by your merchant site. Your transaction ID will be returned in the result and can be inspected:

$result->getTransactionId()

You must make sure this transaction ID matches the one you sent the user off with in the first place (store it in your session). If they do no match, then you cannot trust the result, as the user could be running two checkout flows at the same time, possibly for wildly different amounts.

In a future release, the completeAuthorize() method will expect the transactionId to be supplied and it must match before it will return a success status.

Form Purchase

This is the same as authorize(), but the purchase() request is used instead, and the completePurchase() request is used to complete the transaction on return.

Sage Pay Shared Methods (Direct and Server)

Note: these functions do not work for the Form API. These actions for Sage Pay Form must be performed manually through the "My Sage Pay" admin panel.

Repeat Authorize/Purchase

An authorization or purchase can be created from a past authorization or purchase. You will need the transactionReference of the original transaction. The transactionReference will be a JSON string containing the four pieces of information the gateway needs to reuse the transaction.

Capture

If the useAuthenticate parameter was set when the transaction was originally authorized, then it must be used in the capture too.

Examples of each:

In both cases, send the message and check the result.

Delete Card

This is one of the simpler messages:

Token Billing

Sage Pay Server and Direct support the ability to store a credit card detail on the gateway, referenced by a token, for later use or reuse. The token can be single-use, or permanently stored (until its expiry date or explicit removal).

Whether a token is single-use or permanent, depends on how it is used, and not on how it is generated. This is important to understand, and is explained in more detail below.

Generating a Token or CardReference

A token can be generated explicitly, with no authorization, or it can be generated as a part of a transaction:

If created explicitly, then a CVV can be provided, and that will be stored against the token until the token is first used to make a payment. If the cardReference is reused after the first payment, then a CVV must be supplied each time (assuming your rules require the CVV to be present). If using Sage Pay Server, then the user will be prompted for a CVV on subsequent uses of the cardReference.

If creating a token or cardReference with a transaction, then the CVV will never be stored against the token.

The transaction response (or notification request for Sage Pay Server) will provide the generated token. This is accessed using:

These are equivalent since there is no difference in the way tokens or cardRererences are generated.

Using a Token or CardReference

To use a token with Sage Pay Direct, you must leave the credit card details blank in the CreditCard object. Sage Pay Server does not use the credit card details anyway. To use the token as a single-use token, add it to the transaction request like this:

request->setToken($saved_token);

Once authorized, this token will be deleted by the gateway and so cannot be used again. Note that if the transaction is not authorized, then the token will remain. You should then delete the token explicitly to make sure it does not remain in the gateway (it will sit there until the card expires, maybe for several years).

To use the token as a permanent cardReference, add it to the transaction request like this:

request->setCardReference($saved_token);

This CardReference will remain active on the gateway whether this transaction is authorized or not, so can be used multiple times.

Basket format

Sagepay currently supports two different formats for sending cart/item information to them:

These are incompatible with each other, and cannot be both sent in the same transaction. BasketXML is the most recent format, and is the default used by this driver. Basket is an older format which may be deprecated one day, but is also the only format currently supported by some of the Sage accounting products (e.g. Line 50) which can pull transaction data directly from Sage Pay. For applications that require this type of integration, an optional parameter useOldBasketFormat with a value of true can be passed in the driver's initialize() method.

Sage 50 Accounts Software Integration

The Basket format can be used for Sage 50 Accounts Software Integration:

It is possible to integrate your Sage Pay account with Sage Accounting products to ensure you can reconcile the transactions on your account within your financial software. If you wish to link a transaction to a specific product record this can be done through the Basket field in the transaction registration post. Please note the following integration is not currently available when using BasketXML fields. In order for the download of transactions to affect a product record the first entry in a basket line needs to be the product code of the item within square brackets. For example:

You can either prepend this onto the description or using \Omnipay\SagePay\Extend\Item you can use setProductCode which will take care of pre-pending [] for you.

Account Types

Your Sage Pay account will use separate merchant accounts for difference transaction sources. The sources are specified by the accountType parameter, and take one of three values:

The "M" MOTO and "C" account types will also disable any 3D-Secure validation that may otherwise be triggered. The "C" account type will disable any CVV requirement.

The "account type" is common across other gateways, but often with different names. Authorize.Net calls it the "business model" and includes "retail" as an option, linking to card machines and hand-held scanners. This is not yet standardized in Omnipay, but there are some moves to do so.

VAT

If you want to include VAT amount in the item array you must use \Omnipay\SagePay\Extend\Item as follows.

Support

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 want to keep up to date with release announcements, discuss ideas for the project, or ask more detailed questions, there is also a mailing list which you can subscribe to.

If you believe you have found a bug, please report it using the GitHub issue tracker, or better yet, fork the library and submit a pull request.

References


All versions of sagepay with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3|^8
omnipay/common Version ~3.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package omnipay/sagepay contains the following files

Loading the files please wait ....