-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
48 lines (48 loc) · 1.03 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "prevailexcel/laravel-nowpayments",
"description": "A Laravel Package for NOWPayments",
"keywords": [
"php",
"github",
"laravel",
"Open Source",
"payments",
"crypto",
"subscription",
"Nowpayments",
"crypto payments",
"laravel 6",
"laravel 7",
"laravel 8",
"laravel 9"
],
"license": "MIT",
"minimum-stability": "stable",
"autoload": {
"files": [
"utils/helpers/nowpayments.php"
],
"psr-4": {
"PrevailExcel\\Nowpayments\\": "src/"
}
},
"authors": [
{
"name": "PrevailExcel",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "^7.0.1"
},
"extra": {
"laravel": {
"providers": [
"PrevailExcel\\Nowpayments\\NowpaymentsServiceProvider"
],
"aliases": {
"Nowpayments": "PrevailExcel\\Nowpayments\\Facades\\Nowpayments"
}
}
}
}