-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 852 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
{
"name": "chrisidakwo/okra-php",
"description": "PHP client library for Okra open finance APIs",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "5.*|6.*|7.*",
"vlucas/phpdotenv": "^2.2|^3.6|^4.0|^5.0",
"respect/validation": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Okra\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Okra\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Chris Idakwo",
"email": "chris.idakwo@gmail.com"
}
],
"scripts": {
"test": "vendor/bin/phpunit"
}
}