forked from SwedbankPay/swedbank-pay-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.39 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
{
"name": "swedbank-pay/swedbank-pay-sdk-php",
"type": "library",
"description": "The Swedbank Pay SDK for PHP simplifies integrations against Swedbank Pay's API Platform by providing native PHP interface towards the REST API.",
"version": "5.0.1",
"authors": [
{
"name": "Sammy Nordström",
"email": "sammy.nordstrom@visma.com"
},
{
"name": "Md Shahriar Siraj",
"email": "shahriar.siraj@visma.com"
},
{
"name": "Richard Birnik",
"email": "richard@aait.se"
},
{
"name": "Asbjørn Ulsberg",
"email": "asbjorn.ulsberg@payex.com"
}
],
"keywords": ["SwedbankPay", "sdk", "payments", "ecommerce"],
"homepage": "https://github.com/SwedbankPay/swedbank-pay-sdk-php",
"license": "MIT",
"require": {
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "~8.5",
"phpmd/phpmd": "^2.6",
"squizlabs/php_codesniffer": "^3.4",
"sebastian/phpcpd": "^4.1 || ^5.0",
"phpunit/php-code-coverage": "^6.1 || ^7.0",
"lmc/steward": "^3.0.0-beta"
},
"autoload": {
"psr-4": {
"SwedbankPay\\": "src/SwedbankPay/"
}
},
"autoload-dev": {
"psr-4": {
"SwedbankPayTest\\": "tests/Unit/SwedbankPayTest/",
"SwedbankPayUITest\\Test\\": "tests/Acceptance/SwedbankPayUITest/Test/",
"SwedbankPayTest\\Test\\": "tests/Functional/SwedbankPayTest/Test/"
}
}
}