-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
53 lines (53 loc) · 1.05 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
53
{
"name": "remotemerge/esewa-php-sdk",
"version": "3.1.0",
"type": "library",
"description": "eSewa payment gateway integration in PHP.",
"homepage": "https://github.com/remotemerge/esewa-php-sdk",
"license": "MIT",
"authors": [
{
"name": "Madan Sapkota",
"email": "[email protected]",
"homepage": "https://madansapkota.com"
}
],
"keywords": [
"PHP",
"API",
"Token",
"eSewa",
"Payment",
"Gateway",
"Nepal"
],
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-simplexml": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.62.0",
"phpunit/phpunit": "^10.5.30",
"rector/rector": "^1.2.4"
},
"config": {
"discard-changes": true,
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {},
"autoload": {
"psr-4": {
"RemoteMerge\\Esewa\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}