Skip to content

Commit

Permalink
base actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lessmore92 committed Jan 18, 2021
1 parent 63c1222 commit 03a5381
Show file tree
Hide file tree
Showing 16 changed files with 1,434 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
32 changes: 32 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "lessmore92/php-ripple-lib",
"description": "PHP API for interacting with the XRP Ledger",
"keywords": [
"ripple",
"xrp-ledger",
"xrp",
"ripple-blockchain",
"ripple-api",
"xrpl"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lessmore92",
"email": "bahramisoft@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">7",
"lessmore92/php-ripple-keypairs": "v1.0.0",
"lessmore92/php-ripple-binary-codec": "v1.0.0",
"guzzlehttp/guzzle": "7.0"
},
"autoload": {
"psr-4": {
"Lessmore92\\Ripple\\": "src/"
}
}
}
Loading

0 comments on commit 03a5381

Please sign in to comment.