Skip to content
This repository has been archived by the owner on Oct 30, 2020. It is now read-only.

Commit

Permalink
Adds initial composer configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig Paul committed Oct 19, 2016
1 parent 3747a46 commit 8d42012
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]"
}
],
"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
}

0 comments on commit 8d42012

Please sign in to comment.