forked from paymentsds/mpesa-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.43 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.43 KB
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
{
"name": "paymentsds/mpesa",
"description": "PHP client library for MPesa API",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Edson Michaque",
"email": "edson@michaque.com"
},
{
"name": "Elton Laice",
"email": "me@eltonlaice.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">= 7.2",
"guzzlehttp/guzzle": "^7.1@dev",
"vlucas/phpdotenv": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "6.*"
},
"autoload": {
"psr-4": {
"Paysuite\\MPesa\\": "src"
},
"files": [
"src/Paymentsds/MPesa/Environment.php",
"src/Paymentsds/MPesa/Operation.php",
"src/Paymentsds/MPesa/Constants.php",
"src/Paymentsds/MPesa/Configuration.php",
"src/Paymentsds/MPesa/Service.php",
"src/Paymentsds/MPesa/Client.php",
"src/Paymentsds/MPesa/ErrorType.php",
"src/Paymentsds/MPesa/Response.php",
"src/Paymentsds/MPesa/Exception/AuthenticationException.php",
"src/Paymentsds/MPesa/Exception/InvalidHostException.php",
"src/Paymentsds/MPesa/Exception/InvalidReceiverException.php",
"src/Paymentsds/MPesa/Exception/TimeoutException.php",
"src/Paymentsds/MPesa/Exception/ValidationException.php"
]
}
}