-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.21 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
45
46
47
{
"name": "midsonlajeanty/php-moncash-sdk",
"type": "library",
"description": "Minimum SDK to process payment with Digicel Moncash Payment Gateway",
"keywords": [
"moncash",
"payment"
],
"license": "MIT",
"homepage": "https://github.com/midsonlajeanty/php-moncash-sdk",
"support": {
"issues": "https://github.com/midsonlajeanty/php-moncash-sdk/issues",
"source": "https://github.com/midsonlajeanty/php-moncash-sdk"
},
"authors": [
{
"name": "Louis Midson LAJEANTY",
"email": "dev@louismidson.me"
}
],
"scripts": {
"demo": "php example/cli.php",
"serve": "php -S localhost:1234 -t example",
"test": "./vendor/bin/pest"
},
"require": {
"php": "^7.4|^8.0",
"guzzlehttp/guzzle": "^7.8"
},
"autoload": {
"psr-4": {
"Mds\\Moncash\\": "src/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"mockery/mockery": "^1.6",
"pestphp/pest": "^1.23"
}
}