This library provides a simple API to communicate with Easypay
The recommended way to install is through Composer.
# Install Composer
$ curl -sS https://getcomposer.org/installer | php
# Add easypay-php as a dependency
$ php composer.phar require gordalina/easypay-php:~1.0After installing, you need to require Composer's autoloader:
require 'vendor/autoload.php';This library uses PHPUnit. In order to run the unit tests, you'll first need to install the development dependencies of the project using Composer:
$ php composer.phar install --devYou can then run the tests using phpunit
$ bin/phpunitIf you want to run integration tests you have to copy phpunit.xml.dist to
phpunit.xml then insert your credentials and set EASYPAY_RUN_INTEGRATION_TESTS
to true.
Then run phpunit
$ bin/phpunit --exclude-group noneThis library is under the MIT License, see the complete license here



