-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 1.03 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
{
"name": "fannypack/beyonic",
"description": "laravel beyonic mobile money payment implementation",
"keywords": ["library", "laravel", "php", "payments", "mobile money", "beyonic"],
"authors": [
{
"name": "Mpande Andrew",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "~6.0|^6.3",
"illuminate/database": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/support": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/routing": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/validation": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"nesbot/carbon": "^1.26.3 || ^2.0"
},
"autoload": {
"psr-4": {
"FannyPack\\Beyonic\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"FannyPack\\Beyonic\\BeyonicServiceProvider"
],
"aliases": {
"Beyonic": "FannyPack\\Beyonic\\Beyonic"
}
}
}
}