This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
60 lines (60 loc) · 1.74 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
{
"name": "wp-pay-gateways/targetpay",
"description": "TargetPay driver for the WordPress payment processing library.",
"keywords": ["wordpress", "wp", "pay", "targetpay", "gateway", "pronamic", "deprecated"],
"homepage": "http://www.wp-pay.org/gateways/targetpay/",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Pronamic",
"email": "[email protected]",
"homepage": "http://www.pronamic.eu/",
"role": "Company"
},
{
"name": "Remco Tolsma",
"email": "[email protected]",
"homepage": "http://www.remcotolsma.nl/",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/wp-pay-gateways/targetpay/issues",
"source": "https://github.com/wp-pay-gateways/targetpay"
},
"autoload": {
"psr-4": {
"Pronamic\\WordPress\\Pay\\Gateways\\TargetPay\\": "src/"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=5.6.20",
"wp-pay/core": "^3.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"overtrue/phplint": "^1.2",
"php-coveralls/php-coveralls": "^2.4",
"phpmd/phpmd": "^2.7",
"phpunit/phpunit": "^5.7 || ^6.0",
"pronamic/wp-coding-standards": "^1.0",
"roots/wordpress": "^5.8",
"wp-phpunit/wp-phpunit": "^5.8"
},
"scripts": {
"coveralls": "vendor/bin/php-coveralls -v",
"phpcbf": "vendor/bin/phpcbf",
"phpcs": "XDEBUG_MODE=off vendor/bin/phpcs -s -v",
"phplint": "vendor/bin/phplint",
"phpmd": "vendor/bin/phpmd src,tests text phpmd.ruleset.xml --suffixes php",
"phpstan": "vendor/bin/phpstan analyse",
"phpunit": "vendor/bin/phpunit",
"post-install-cmd": "echo 'Optionally run: composer bin all install'",
"post-update-cmd": "echo 'Optionally run: composer bin all update'",
"psalm": "vendor/bin/psalm"
}
}