-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (29 loc) · 712 Bytes
/
composer.json
File metadata and controls
30 lines (29 loc) · 712 Bytes
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
{
"name": "bmunyoki/mpesa",
"description": "Laravel Mpesa package providing Mpesa STK, B2C, C2B and Reversal functionality",
"type": "laravel",
"license": "MIT",
"authors": [
{
"name": "Benjamin Munyoki",
"email": "munyokibenjamin@gmail.com"
}
],
"minimum-stability": "dev",
"require": {},
"autoload": {
"psr-4": {
"Bmunyoki\\Mpesa\\":"src/"
}
},
"extra": {
"laravel": {
"providers": [
"Bmunyoki\\Mpesa\\MpesaServiceProvider"
],
"aliases":{
"Mpesa":"Bmunyoki\\Mpesa\\Facades\\Mpesa"
}
}
}
}