boltapp/omnipay-bolt

Omnipay driver for Bolt payments

v0.7 2016-12-09 18:30 UTC

This package is not auto-updated.

Last update: 2025-06-08 05:28:07 UTC


README

Omnipay driver for Bolt Checkout

Installation

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

{
    "require": {
        "boltapp/omnipay-bolt": "^0.7.0"
    }
}

And run composer to update your dependencies:

$ php composer.phar update

Development

Setup phpbrew

Follow instructions at the phpbrew GitHub repo to setup it up.

Install any version of php that is greater than 5.6

phpbrew install 5.6.0 +default
phpbrew use php-5.6.0

If you run into installation errors, look into the phpbrew install command. You are probably missing some native packages (like mcrypt) which may need to be installed using Homebrew. You also may need to include .phpbrew/bashrc into your ~/.bashrc

Setup Composer and download vendor packages

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

Running tests

./runtests.sh # you'll need phpunit at vendor/bin/phpunit