We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbb9a66 commit af654c4Copy full SHA for af654c4
README.md
@@ -7,7 +7,12 @@ PHP Lightning Address is an easy way to get a [lightning address](https://lightn
7
composer require php-lightning/lightning-address
8
```
9
10
+Then you can use it directly from your vendor like:
11
+```bash
12
+vendor/bin/lnaddress 100_000
13
+```
14
15
+----
16
17
## Table of contents
18
- [Prerequisite](#prerequisite)
composer.json
@@ -23,6 +23,9 @@
23
"PhpLightningTest\\": "tests/"
24
}
25
},
26
+ "bin": [
27
+ "lnaddress"
28
+ ],
29
"scripts": {
30
"ctal": [
31
"@static-clear-cache",
lnaddress.php renamed to lnaddress
@@ -1,3 +1,4 @@
1
+#!/usr/bin/env php
2
<?php
3
4
use Gacela\Framework\Bootstrap\GacelaConfig;
0 commit comments