From 8d42012c92de140845572204391ac976db1bbd52 Mon Sep 17 00:00:00 2001 From: Craig Paul Date: Tue, 18 Oct 2016 21:28:22 -0600 Subject: [PATCH] Adds initial composer configuration --- composer.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..b1e6c84 --- /dev/null +++ b/composer.json @@ -0,0 +1,26 @@ +{ + "name": "craigpaul/moneris-api", + "description": "An easier way to consume the (truely awful) Moneris eSELECTplus API.", + "keywords": ["moneris", "eselectplus", "api"], + "license": "MIT", + "authors": [ + { + "name": "Craig Paul", + "email": "craig@townfolio.co" + } + ], + "require": { + "guzzlehttp/guzzle": "~6.0" + }, + "require-dev": { + "phpunit/phpunit": "~5.0", + "mockery/mockery": "~0.9" + }, + "autoload": { + "psr-4": { + "CraigPaul\\Moneris\\": "src/" + } + }, + "minimum-stability": "dev", + "prefer-stable": true +}