-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.29 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
60
61
{
"name": "ophpl/omnipay-paytrail",
"type": "library",
"description": "Paytrail gateway for Omnipay payment processing library",
"keywords": [
"paytrail",
"gateway",
"merchant",
"omnipay",
"pay",
"payment",
"purchase"
],
"homepage": "https://github.com/ophpl/omnipay-paytrail",
"license": "MIT",
"authors": [
{
"name": "Stanislav Prokopov",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.0.2"
}
},
"autoload": {
"psr-4": {
"Omnipay\\Paytrail\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Omnipay\\Paytrail\\Tests\\": "tests/"
}
},
"require": {
"omnipay/common": "^3.2",
"paytrail/paytrail-php-sdk": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9",
"omnipay/tests": "^4",
"guzzlehttp/guzzle": "^7.5.0",
"php-http/guzzle7-adapter": "^1",
"friendsofphp/php-cs-fixer": "^v3.0"
},
"scripts": {
"test": [
"@php -d date.timezone=UTC vendor/bin/phpunit -c phpunit.xml.dist"
],
"lint": [
"vendor/bin/php-cs-fixer fix src --ansi --no-interaction --dry-run --diff --verbose"
],
"fix": [
"vendor/bin/php-cs-fixer fix src"
]
}
}