This repository was archived by the owner on Oct 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (76 loc) · 2.56 KB
/
composer.json
File metadata and controls
77 lines (76 loc) · 2.56 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
73
74
75
76
77
{
"name": "checkout-finland/checkout-finland-php-sdk",
"description": "PHP SDK for using Checkout Finland payment service",
"authors": [
{
"name": "Miika Arponen",
"email": "miika.arponen@geniem.com",
"homepage": "http://github.com/nomafin",
"role": "Developer"
},
{
"name": "Ville Siltala",
"email": "ville.siltala@geniem.com",
"homepage": "http://github.com/villesiltala",
"role": "Developer"
},
{
"name": "Henryk Helsky",
"email": "henryk.helsky@geniem.com",
"homepage": "https://github.com/traone",
"role": "Developer"
},
{
"name": "Joonas Loueranta",
"email": "joonas.loueranta@op.fi",
"homepage": "https://github.com/loueranta",
"role": "Manager"
},
{
"name": "Ville Pietarinen",
"email": "ville.pietarinen@geniem.com",
"homepage": "http://github.com/villepietarinen",
"role": "Developer"
},
{
"name": "Kimmo Kava",
"email": "kimmo.kava@ambientia.fi",
"homepage": "https://github.com/ambkimmok",
"role": "Developer"
}
],
"keywords": [
"checkout finland", "payment service provider"
],
"license": "MIT",
"require": {
"php": ">=7.3",
"ext-json": "*",
"symfony/polyfill-intl-idn": "^1.17.0",
"psr/http-message": "~1.0",
"ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
},
"autoload": {
"psr-4": {
"OpMerchantServices\\SDK\\": "src/",
"Guzzle6\\": "lib/guzzlehttp/guzzle/src/",
"Guzzle6\\Psr7\\": "lib/guzzlehttp/psr7/src/",
"Guzzle6\\Promise\\": "lib/guzzlehttp/promises/src/"
},
"files": [
"lib/guzzlehttp/guzzle/src/functions_include.php",
"lib/guzzlehttp/psr7/src/functions_include.php",
"lib/guzzlehttp/promises/src/functions_include.php"
]
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"squizlabs/php_codesniffer": "^3.5",
"phpcompatibility/php-compatibility": "^9.3"
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility"
},
"abandoned": "paytrail/paytrail-php-sdk"
}