-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
49 lines (49 loc) · 1.13 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
{
"name": "adelowo/gbowo",
"license": "MIT",
"description": "Unified API for hippy Nigerian payment gateways..Batteries included. Comes with adapters for Paystack and Amplifypay",
"type": "library",
"authors": [
{
"name": "Lanre Adelowo",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://lanre.wtf"
}
],
"require": {
"php": "~7.0",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3",
"mockery/mockery": "^0.9.5"
},
"autoload": {
"psr-4": {
"Gbowo\\": "src/Gbowo"
},
"files": [
"src/Gbowo/functions.php"
]
},
"suggest": {
"vlucas/phpdotenv": "Keep private tokens (secret keys) out of your code by loading them into `$_ENV` automagically from a .env file (~2.2).",
"adelowo/gbowo-paystack": "Extra plugins for the Paystack adapter"
},
"autoload-dev": {
"psr-4": {
"Gbowo\\Tests\\": "tests"
}
},
"keywords": [
"Payments",
"Paystack",
"AmplifyPay",
"Nigerian Payments",
"php",
"github"
]
}