-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
24 lines (24 loc) · 797 Bytes
/
composer.json
File metadata and controls
24 lines (24 loc) · 797 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
{
"name": "alexnguetcha/intouch",
"description": "The Intouch Payment Library is a PHP library that provides a simple interface for making payments with mobile money service providers that are supported by the Intouch platform. This library handles the complexities of interacting with the Intouch API, allowing you to focus on building your application.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"AlexNguetcha\\Intouch\\": "src/"
}
},
"authors": [
{
"name": "AlexNguetcha",
"email": "nguetchaalex@gmail.com"
}
],
"require": {
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"phpunit/phpunit": "10.0.0",
"vlucas/phpdotenv": "^5.5"
}
}