-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·45 lines (44 loc) · 1.02 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
{
"name": "rndwiga/project-mpesa",
"type": "package",
"description": "An expressive mpesa implementation",
"keywords": ["ai", "rndwiga","mpesa"],
"authors": [
{
"name": "Raphael Ndwiga",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"rndwiga/mpesa": "@dev",
"rndwiga/toolbox": "@dev",
"monolog/monolog": "^1.24",
"vlucas/phpdotenv": "^3.4",
"phpseclib/phpseclib": "^2.0",
"ramsey/uuid": "^3.8",
"ext-json": "*",
"ext-curl": "*",
"ext-openssl": "*"
},
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "path",
"url": "mpesa",
"options": {
"symlink": true
}
},{
"type": "path",
"url": "Toolbox",
"options": {
"symlink": true
}
}
],
"require-dev": {
}
}