-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
39 lines (39 loc) · 994 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
{
"name": "bryceandy/laravel-selcom",
"description": "Laravel package that integrates with Selcom APIs (Utility Payments, Wallet Cashin, Agent Cashout, C2B, Qwiksend, VCN, Checkout & International Money Transfer",
"license": "MIT",
"authors": [
{
"name": "bryceandy",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^7.4|^8.0",
"ext-curl": "*",
"guzzlehttp/guzzle": "^7.3"
},
"require-dev": {
"orchestra/testbench": "^6.19",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Bryceandy\\Selcom\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bryceandy\\Selcom\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Bryceandy\\Selcom\\SelcomBaseServiceProvider"
]
}
}
}