forked from mtvbrianking/laravel-mtn-momo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 1.86 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "bmatovu/laravel-mtn-momo",
"description": "Laravel MTN MOMO integration.",
"homepage": "https://github.com/mtvbrianking/laravel-mtn-momo",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"package",
"mtn",
"momo",
"api"
],
"authors": [
{
"name": "Brian Matovu",
"email": "[email protected]",
"homepage": "http://bmatovu.com",
"role": "Developer"
}
],
"require": {
"php": "^7.2.5",
"ext-json": "*",
"bmatovu/oauth-negotiator": "~1.0.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"illuminate/console": "^7.0",
"illuminate/container": "^7.0",
"illuminate/contracts": "^7.0",
"illuminate/database": "^7.0",
"illuminate/support": "^7.0",
"nesbot/carbon": "^2.17",
"ramsey/uuid": "^3.7"
},
"require-dev": {
"mockery/mockery": "^1.3.1",
"orchestra/testbench": "^5.0",
"phpunit/phpunit": "^8.4|^9.0"
},
"suggest": {
"monolog/monolog": "For more comprehensive logging."
},
"autoload": {
"psr-4": {
"Bmatovu\\MtnMomo\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Bmatovu\\MtnMomo\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"doc": "phpdoc -d src -t docs --cache-folder=docs/cache",
"test": "./vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Bmatovu\\MtnMomo\\MtnMomoServiceProvider"
]
}
}
}