-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.69 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.69 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
{
"name": "monei/monei-php-sdk",
"description": "The MONEI SDK will allow you to interact with our API in an easy and predictable way.",
"keywords": [
"monei",
"monei pay",
"pay",
"payments",
"payment gateway",
"php",
"sdk",
"rest",
"api"
],
"homepage": "https://monei.com",
"license": "MIT",
"authors": [
{
"name": "MONEI",
"homepage": "https://monei.com"
}
],
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"ralouphie/getallheaders": "^3.0",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.13",
"friendsofphp/php-cs-fixer": "^3.64",
"phpunit/php-code-coverage": "^9.2"
},
"autoload": {
"psr-4": {
"Monei\\": "lib/"
},
"classmap": [
"lib/Internal/"
],
"files": [
"lib/Internal/guzzlehttp/guzzle/src/functions_include.php"
]
},
"autoload-dev": {
"psr-4": {
"Monei\\": "lib/",
"Tests\\": "test/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"post-install-cmd": [
"@cs-fix"
],
"post-update-cmd": [
"@cs-fix"
]
}
}