-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
81 lines (81 loc) · 2.35 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "pckg/payment",
"description": "Full implementation of payment libraries like braintree, paypal, ideal and others",
"keywords": [
"php",
"payment",
"paypal",
"paymill",
"sepa",
"proforma"
],
"homepage": "https://github.com/pckg/payment",
"license": "MIT",
"authors": [
{
"name": "Bojan Rajh",
"email": "schtr4jh@schtr4jh.net"
}
],
"require": {
"ext-json": "*",
"paymill/paymill": "4.*",
"paypal/rest-api-sdk-php": "1.*",
"braintree/braintree_php": "3.*",
"mollie/mollie-api-php": "^2.0",
"stripe/stripe-php": "7.*",
"wirecard/payment-sdk-php": "dev-patch-php-8 as dev-master",
"icepay/api": "^0.0.1",
"ampeco/omnipay-bankart": "dev-master",
"eoler/omnipay-corvuspay": "*"
},
"require-dev": {
"pckg-app/frontend-dev": "dev-next-8.0 as dev-master",
"pckg/database": "dev-next-8.0 as dev-master",
"pckg/framework": "dev-next-8.0 as dev-master",
"pckg/auth": "dev-next-8.0 as dev-master",
"pckg/htmlbuilder": "dev-next-8.0 as dev-master",
"pckg/collection": "dev-next-8.0 as dev-master",
"pckg/generic": "dev-next-8.0 as dev-master",
"nesbot/carbon": "2.*"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Eoler/omnipay-corvuspay.git"
},
{
"type": "vcs",
"url": "https://github.com/schtr4jh/omnipay-revolut.git"
},
{
"type": "vcs",
"url": "https://github.com/schtr4jh/paymentSDK-php.git"
}
],
"autoload": {
"psr-0": {
"Pckg": "src\\"
}
},
"scripts": {
"test": [
"true || vendor/bin/phpunit --help --stop-on-defect",
"true || vendor/bin/phpcloc cloc src/",
"vendor/bin/phpstan analyse src/ --level=1 || true",
"vendor/bin/phpcs --extensions=php --warning-severity=8 --error-severity=1 --standard=PSR12 --parallel=2 -p src/",
"vendor/bin/codecept run"
],
"autofix": [
"vendor/bin/phpcs --extensions=php --report-diff=phpcs.diff --warning-severity=8 --error-severity=1 --standard=PSR12 --parallel=2 -p src/"
],
"autopatch": [
"patch -p0 -ui phpcs.diff && rm phpcs.diff"
]
},
"scripts-descriptions": {
"test": "Run all tests and quality checks"
},
"minimum-stability": "dev",
"prefer-stable": true
}