-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 792 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 792 Bytes
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
{
"name": "coderatio/paystack-mirror",
"description": "An actionable PHP library for Paystack Api",
"type": "library",
"homepage": "https://github.com/coderatio/paystack-mirror",
"authors": [
{
"name": "Josiah Ovye Yahaya",
"email": "hello@josiah.com.ng",
"homepage": "http://josiah.com.ng",
"role": "Developer"
}
],
"autoload": {
"classmap": [
"src"
],
"psr-4": {
"Coderatio\\PaystackMirror\\": "src"
},
"files": [
"src/helpers.php"
]
},
"require-dev": {
"phpunit/phpunit": "7.5.x-dev"
},
"license": "GPL-3.0",
"minimum-stability": "dev",
"require": {
"php": ">=7.1"
}
}