-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 930 Bytes
/
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
{
"name": "matscode/paystack-php-sdk",
"description": "Paystack PHP SDK is for communicating with PAYSTACK API",
"type": "library",
"authors": [
{
"name": "Michael Akanji",
"email": "matscode@gmail.com",
"homepage": "https://inndex.page/matscode"
}
],
"keywords": [
"payment",
"paystack",
"sdk",
"php",
"stripe",
"processor"
],
"license": "GPL-3.0",
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Matscode\\Paystack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Matscode\\Paystack\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"guzzlehttp/guzzle": "^7.0",
"ext-json": "*"
},
"require-dev": {
"mockery/mockery": "1.4.x-dev",
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "3.*"
}
}