-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathcomposer.json
82 lines (82 loc) · 1.94 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
74
75
76
77
78
79
80
81
82
{
"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": "https://bmatovu.com",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"bmatovu/oauth-negotiator": "^2.0",
"guzzlehttp/guzzle": "^7.5",
"illuminate/console": "^8.0|^9.0|^10.0",
"illuminate/container": "^8.0|^9.0|^10.0",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"illuminate/database": "^8.0|^9.0|^10.0",
"illuminate/support": "^8.0|^9.0|^10.0",
"nesbot/carbon": "^2.62.1",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"code-lts/doctum": "^5.5",
"friendsofphp/php-cs-fixer": "^3.14",
"laravel/framework": "^10.0",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^9.3|^10.0"
},
"suggest": {
"monolog/monolog": "For more comprehensive logging."
},
"autoload": {
"psr-4": {
"Bmatovu\\MtnMomo\\": "src/",
"Bmatovu\\MtnMomo\\Database\\Factories\\": "database/factories/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Bmatovu\\MtnMomo\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs-fix": "php-cs-fixer fix",
"cs-lint": "php-cs-fixer fix --dry-run",
"doc": "doctum.php update doctum.php -v",
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
},
"laravel": {
"providers": [
"Bmatovu\\MtnMomo\\MtnMomoServiceProvider"
]
}
}
}