-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 924 Bytes
/
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": "danialpanah/webpay",
"type": "library",
"description": "Laravel Package for Processing Online Payments Through Webpay Payment Gateway",
"keywords": [
"gateway",
"api",
"rest",
"web service",
"webpay",
"webpay bahamta",
"laravel webpay"
],
"license": "MIT",
"authors": [
{
"name": "Danial Panah",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DanialPanah\\WebPay\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DanialPanah\\WebPay\\Tests\\": "tests"
}
},
"require": {
"guzzlehttp/guzzle": "^6.5"
},
"require-dev": {
"orchestra/testbench": "^4.0",
"phpunit/phpunit": "^8.5"
},
"extra": {
"laravel": {
"providers": [
"DanialPanah\\WebPay\\WebpayServiceProvider"
],
"aliases": {
"WebPay": "DanialPanah\\WebPay\\Facades\\Webpay"
}
}
}
}