-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.55 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
{
"name": "starfolksoftware/flutterwave-php",
"description": "A PHP library to conveniently access the Flutterwave API from applications written in the PHP language.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Faruk Nasir",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"StarfolkSoftware\\Flutterwave\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"StarfolkSoftware\\Flutterwave\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": "^8.0",
"laminas/laminas-diactoros": "^2.8",
"php-http/client-common": "^2.3",
"php-http/discovery": "^1.14.1",
"psr/http-client": "^1.0.1",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0.1",
"symfony/options-resolver": "^5.2"
},
"require-dev": {
"php-http/curl-client": "^2.1",
"php-http/mock-client": "^1.5",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.1"
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "stable",
"prefer-stable": true,
"support": {
"email": "[email protected]",
"issues": "https://github.com/starfolksoftware/flutterwave-php/issues",
"source": "https://github.com/starfolksoftware/flutterwave-php",
"docs": "https://github.com/starfolksoftware/flutterwave-php/blob/master/README.md"
}
}