-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.04 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
{
"name": "fabianmuema/pesapal",
"description": "A laravel package that integrates into the pesapal api",
"keywords": ["pesapal","laravel 10 mpesa pesa pal","MPESA","payments","VISA","Mastercard", "Fabian Muema", "billing gateway", "pesa pal payment integration"],
"homepage": "https://github.com/fabianmuema/pesapal",
"license": "MIT",
"authors": [
{
"name": "Fabian Muema",
"email": "[email protected]",
"role": "Senior Software Engineer"
}
],
"autoload": {
"psr-4": {
"Fabian\\Pesapal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fabian\\Pesapal\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=8.1"
},
"extra": {
"laravel": {
"providers": [
"Fabian\\Pesapal\\PesapalServiceProvider"
],
"aliases": {
"Pesapal": "Fabian\\Pesapal\\Facades\\Pesapal"
}
}
}
}