-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
59 lines (59 loc) · 1.38 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
54
55
56
57
58
59
{
"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": "*",
"guzzlehttp/guzzle": "^7.8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.13",
"squizlabs/php_codesniffer": "~2.6",
"friendsofphp/php-cs-fixer": "^3.40",
"phpunit/php-code-coverage": "^9.2"
},
"autoload": {
"psr-4": {
"Monei\\": "lib/"
}
},
"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"
]
}
}