-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
110 lines (110 loc) · 3.12 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "wp-pay-gateways/adyen",
"description": "Adyen driver for the WordPress payment processing library.",
"keywords": [
"wordpress",
"wp",
"pay",
"adyen",
"gateway",
"pronamic"
],
"homepage": "http://www.wp-pay.org/gateways/adyen/",
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"authors": [
{
"name": "Pronamic",
"email": "info@pronamic.eu",
"homepage": "http://www.pronamic.eu/",
"role": "Company"
},
{
"name": "Remco Tolsma",
"email": "info@remcotolsma.nl",
"homepage": "http://www.remcotolsma.nl/",
"role": "Developer"
}
],
"support": {
"email": "support@wp-pay.org",
"issues": "https://github.com/wp-pay-gateways/adyen/issues",
"source": "https://github.com/wp-pay-gateways/adyen"
},
"autoload": {
"psr-4": {
"Pronamic\\WordPress\\Pay\\Gateways\\Adyen\\": "src/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": true,
"bamarni/composer-bin-plugin": true,
"automattic/jetpack-autoloader": true
},
"wp-slug": "pronamic-pay-adyen"
},
"require": {
"php": ">=7.4",
"ext-intl": "*",
"automattic/jetpack-autoloader": "^3.0",
"justinrainbow/json-schema": "^5.2",
"pronamic/wp-http": "^1.2",
"pronamic/wp-money": "^2.2",
"wp-pay/core": "^4.8"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"overtrue/phplint": "^4.5",
"php-coveralls/php-coveralls": "^2.5",
"phpmd/phpmd": "^2.13",
"phpstan/phpstan": "^1.11",
"pronamic/pronamic-cli": "^1.1",
"pronamic/wp-coding-standards": "^2.1",
"roots/wordpress": "^6.0",
"sirbrillig/phpcs-import-detection": "^1.2",
"sirbrillig/phpcs-variable-analysis": "^2.8",
"szepeviktor/phpstan-wordpress": "^1.3",
"vimeo/psalm": "^5.25",
"wp-phpunit/wp-phpunit": "^6.1",
"yoast/phpunit-polyfills": "^1.0"
},
"scripts": {
"build": "vendor/bin/pronamic wp-build",
"build-docs": "vendor/bin/wp-documentor parse . --exclude=build --exclude=tests --exclude=vendor --exclude=wordpress --exclude=wp-content --format=markdown --relative=docs > docs/hooks.md",
"ci": [
"@phplint",
"@phpcs",
"@coverage",
"@phpstan",
"@psalm"
],
"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 --memory-limit=-1",
"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",
"xmllint-phpcs": "xmllint --noout --schema vendor/squizlabs/php_codesniffer/phpcs.xsd phpcs.xml.dist",
"xmllint": [
"@xmllint-phpcs"
],
"translate": [
"@build",
"rsync --recursive --delete --verbose ./build/project/languages/ ./languages/"
],
"version": "@build",
"release": [
"@build",
"vendor/bin/pronamic release-to-github",
"vendor/bin/pronamic release-to-pronamic"
]
}
}