-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
37 lines (37 loc) · 971 Bytes
/
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
{
"name": "vptrading/telebirr-ussd-laravel",
"description": "Laravel package for quick telebirr ussd payment gateway integration",
"version": "1.1",
"license": "MIT",
"require": {
"php": "^8.0",
"illuminate/support": "~10|~11"
},
"homepage": "https://github.com/VP-Trading/telebirr-ussd",
"keywords": [
"Laravel",
"TelebirrUssd"
],
"autoload": {
"psr-4": {
"Vptrading\\TelebirrUssd\\": "src/"
}
},
"authors": [
{
"name": "Alazar Kassahun",
"email": "alazarkassahun@vptrading.et",
"homepage": "https://vptrading.et"
}
],
"extra": {
"laravel": {
"providers": [
"Vptrading\\TelebirrUssd\\TelebirrUssdServiceProvider"
],
"aliases": {
"TelebirrUssd": "Vptrading\\TelebirrUssd\\Facades\\TelebirrUssd"
}
}
}
}