-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 850 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": "seunex17/flutterwave-ci4",
"description": "Flutterwave v3 for codeigniter4",
"license": "MIT",
"type": "library",
"autoload": {
"psr-4": {
"Seunex17\\FlutterwaveCi4\\": "src/"
}
},
"authors": [
{
"name": "seunex17",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"codeigniter4/devkit": "^1.1",
"phpunit/phpunit": "^9.1"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix --ansi --verbose --diff",
"test": "phpunit"
},
"require": {
"ext-json": "*",
"php": "^7.4 || ^8",
"codeigniter4/settings": "^2.2"
}
}