File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 4
4
pull_request :
5
5
push :
6
6
branches :
7
- - master
7
+ - main
8
8
9
9
name : CI
10
10
14
14
name : Coding Guidelines
15
15
runs-on : ubuntu-latest
16
16
steps :
17
- - uses : actions/checkout@v2
17
+ - uses : actions/checkout@v3
18
18
19
19
- uses : shivammathur/setup-php@v2
20
20
with :
27
27
run : echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
28
28
29
29
- name : Cache dependencies
30
- uses : actions/cache@v2
30
+ uses : actions/cache@v3.3.1
31
31
with :
32
32
path : ${{ steps.composer-cache.outputs.dir }}
33
33
key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
43
43
name : Type Checker
44
44
runs-on : ubuntu-latest
45
45
steps :
46
- - uses : actions/checkout@v2
46
+ - uses : actions/checkout@v3
47
47
48
48
- uses : shivammathur/setup-php@v2
49
49
with :
56
56
run : echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
57
57
58
58
- name : Cache dependencies
59
- uses : actions/cache@v2
59
+ uses : actions/cache@v3.3.1
60
60
with :
61
61
path : ${{ steps.composer-cache.outputs.dir }}
62
62
key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
82
82
operating-system :
83
83
- " ubuntu-latest"
84
84
steps :
85
- - uses : actions/checkout@v2
85
+ - uses : actions/checkout@v3
86
86
87
87
- uses : shivammathur/setup-php@v2
88
88
with :
95
95
run : echo "::set-output name=dir::$(composer config cache-files-dir)"
96
96
97
97
- name : Cache dependencies
98
- uses : actions/cache@v2
98
+ uses : actions/cache@v3.3.1
99
99
with :
100
100
path : ${{ steps.composercache.outputs.dir }}
101
101
key : " php-${{ matrix.php-version }}-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
Original file line number Diff line number Diff line change @@ -111,6 +111,7 @@ return (new LightningConfig())
111
111
->setDomain('your-domain.com')
112
112
->setReceiver('custom-receiver')
113
113
->setSendableRange(min: 100_000, max: 10_000_000_000)
114
+ ->setCallbackUrl('https://your-domain.com/path/to/index.php')
114
115
->addBackend(
115
116
(new LnBitsBackendConfig())
116
117
->setApiEndpoint('http://localhost:5000') // lnbits endpoint : protocol://host:port
You can’t perform that action at this time.
0 commit comments