-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.27 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "mujhtech/laravel-lazerpay",
"description": "Laravel package for lazerpay api",
"keywords": [
"php",
"github",
"laravel",
"Open Source",
"payment",
"crypto",
"lazerpay",
"busd",
"usdt",
"dai",
"mujhtech",
"laravel 6",
"laravel 7",
"laravel 8",
"laravel 9"
],
"license": "MIT",
"minimum-stability": "stable",
"require": {
"guzzlehttp/guzzle": "~6|~7|~8",
"php": "^7.2|^8.0",
"illuminate/support": "~6|~7|~8|~9"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.4"
},
"authors": [
{
"name": "Mujhtech",
"email": "mujeeb.muhideen@gmail.com"
}
],
"autoload": {
"files": [
"src/Helper.php"
],
"psr-4": {
"Mujhtech\\Lazerpay\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Mujhtech\\Lazerpay\\LazerpayServiceProvider"
],
"aliases": {
"Lazerpay": "Mujhtech\\Lazerpay\\Facades\\Lazerpay"
}
}
}
}