-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 2.1 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 2.1 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "gatepay/core",
"description": "Deterministic Payment Gateway Transaction Transport",
"type": "library",
"homepage": "https://github.com/TrayDigita/GatePay-Core",
"license": "MIT",
"prefer-stable": true,
"keywords": [
"payment gateway",
"transaction transport",
"deterministic",
"psr-18",
"psr-7",
"psr-17",
"psr-3",
"php"
],
"authors": [
{
"name": "arrayiterator",
"email": "arrayiterator@gmail.com"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-factory": "^1.0",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"slevomat/coding-standard": "^8.28.1",
"squizlabs/php_codesniffer": "^4.0.1",
"phpunit/phpunit": "^10.5",
"guzzlehttp/guzzle": "7.10.0",
"gatepay/credit-card": "^1",
"symfony/polyfill-mbstring": "^v1.33.0",
"symfony/polyfill-iconv": "^v1.33.0"
},
"suggest": {
"ext-mbstring": "For multibyte string handling",
"ext-simplexml": "For XML parsing and manipulation",
"ext-libxml": "For XML processing and validation",
"gatepay/credit-card": "For credit card validation and formatting",
"guzzlehttp/guzzle": "For PSR-18 HTTP client implementation"
},
"scripts": {
"test": "./vendor/bin/phpunit --config=phpunit.xml.dist",
"lint": "./vendor/bin/phpcs --standard=phpcs.xml.dist",
"analyse": "./vendor/bin/phpstan --configuration=phpstan.neon"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"GatePay\\Core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GatePay\\Core\\": "src/",
"GatePay\\CoreTests\\": "tests/"
}
}
}