-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.02 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
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
{
"name": "meeshalk/glo-api-php-sdk",
"description": "A PHP SDK to use Glo Global ERS Web Services API",
"keywords": ["Glo", "Global", "SDK", "ERS", "Topup", "Service", "API", "SOAP"],
"type": "library",
"require": {
"php": ">=8.0",
"phpro/soap-client": "^3.1",
"guzzlehttp/guzzle": "^7.8",
"guzzlehttp/psr7": "^2.6",
"monolog/monolog": "^3.5"
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10.5",
"psy/psysh": "^0.12.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Meeshalk\\GloERSWebServiceSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Meeshalk\\GloERSWebServiceSdk\\": "tests/"
}
},
"authors": [
{
"name": "Meeshal kumar",
"email": "meeshal1994@gmail.com"
}
],
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}