Skip to content
This repository was archived by the owner on Sep 4, 2021. It is now read-only.

Commit a646696

Browse files
author
Pascal Krason
committed
Added Composer Support
1 parent e067dae commit a646696

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
/src/.idea
22
/Vagrantfile
33
/.vagrant
4+
5+
/vendor/

composer.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "padrio/php-electrum-api",
3+
"description": "PHP wrapper for Electrum JSONRPC-API",
4+
"type": "library",
5+
"keywords": ["electrum", "bitcoin", "payment", "jsonrpc", "api"],
6+
"license": "GPL-3.0",
7+
"authors": [
8+
{
9+
"name": "Pascal Krason",
10+
"email": "p.krason@padr.io"
11+
}
12+
],
13+
"require": {},
14+
"autoload": {
15+
"psr-4": {
16+
"Padrio\\Electrum\\": "src"
17+
}
18+
}
19+
}

0 commit comments

Comments
 (0)