-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 1.15 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
39
40
41
42
43
44
{
"name": "devscast/maxicash",
"description": "The MaxiCash integration platform enables merchants to integrate with the MaxiCash platform to receive payments via their mobile applications or websites. The API uses JSON to interact with .Net or open source platforms such as PHP.",
"keywords": [
"maxicash",
"mobile money",
"payment gateway",
"api"
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Devscast\\Maxicash\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Devscast\\Maxicash\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "bernard-ng",
"email": "ngandubernard@gmail.com"
}
],
"minimum-stability": "stable",
"require-dev": {
"phpstan/phpstan": "^1.10",
"symplify/easy-coding-standard": "^12.0",
"phpunit/phpunit": "^10.4"
},
"require": {
"php": ">=8.2",
"webmozart/assert": "^1.11"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/devscast/maxicash"
}
]
}