Skip to content

Commit

Permalink
- Light version completed
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Buedo committed Oct 15, 2019
1 parent 51b16ee commit e136199
Show file tree
Hide file tree
Showing 43 changed files with 6,360 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
composer.phar
/vendor/
.idea

# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
Expand Down
38 changes: 38 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "bitpay/sdk-light",
"description": "Light version of the PHP library for the new cryptographically secure BitPay API",
"license": "MIT",
"minimum-stability": "stable",
"keywords": [
"bitpay",
"bitcoin",
"cash",
"payment",
"gateway"
],
"homepage": "https://github.com/bitpay/php-bitpay-light-client",
"require": {
"php": "^7.3",
"guzzlehttp/guzzle": "^6.3",
"ext-json": "^1.7"
},
"authors": [
{
"name": "Antonio Buedo",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^8.3"
},
"autoload": {
"psr-4": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BitPaySDKLight\\Test\\": "tests/"
}
}
}
Loading

0 comments on commit e136199

Please sign in to comment.