-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
165 lines (165 loc) · 6.02 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "pronamic/wp-pronamic-pay",
"type": "wordpress-plugin",
"description": "The Pronamic Pay plugin adds payment methods like iDEAL, Bancontact, credit card and more to your WordPress site for a variety of payment providers.",
"keywords": [
"pronamic",
"ideal",
"wordpress",
"pay"
],
"homepage": "https://github.com/pronamic/wp-pronamic-pay",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Remco Tolsma",
"email": "[email protected]",
"homepage": "https://www.remcotolsma.nl/",
"role": "Developer"
},
{
"name": "Reüel van der Steege",
"email": "[email protected]",
"homepage": "https://www.reuel.nl/",
"role": "Developer"
},
{
"name": "Karel-Jan Tolsma",
"email": "[email protected]",
"homepage": "https://www.kareljantolsma.nl/",
"role": "Designer"
},
{
"name": "Leo Oosterloo",
"email": "[email protected]",
"homepage": "https://www.leo-oosterloo.eu/",
"role": "Designer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org/"
}
],
"config": {
"platform": {
"php": "8.1"
},
"platform-check": false,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": true,
"bamarni/composer-bin-plugin": true,
"composer/installers": true,
"automattic/jetpack-autoloader": true
},
"wp-slug": "pronamic-ideal"
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"automattic/jetpack-autoloader": "^3.0",
"composer/installers": "^2.2",
"pronamic/pronamic-pay-admin-reports": "^1.0",
"pronamic/pronamic-wp-updater": "^1.0",
"pronamic/wp-datetime": "^2.1",
"pronamic/wp-gravityforms-nl": "^3.0",
"pronamic/wp-html": "^2.2",
"pronamic/wp-http": "^1.2",
"pronamic/wp-mollie": "^1.6",
"pronamic/wp-money": "^2.4",
"pronamic/wp-number": "^1.3",
"pronamic/wp-pronamic-pay-forms": "^1.1",
"woocommerce/action-scheduler": "^3.8",
"wp-pay-extensions/charitable": "^4.3",
"wp-pay-extensions/contact-form-7": "^3.5",
"wp-pay-extensions/easy-digital-downloads": "^4.3",
"wp-pay-extensions/event-espresso": "^4.3",
"wp-pay-extensions/formidable-forms": "^4.4",
"wp-pay-extensions/give": "^4.2",
"wp-pay-extensions/gravityforms": "^4.8",
"wp-pay-extensions/memberpress": "^4.8",
"wp-pay-extensions/ninjaforms": "^3.3",
"wp-pay-extensions/restrict-content-pro": "^4.6",
"wp-pay-extensions/woocommerce": "^4.9",
"wp-pay-gateways/adyen": "^4.5",
"wp-pay-gateways/buckaroo": "^4.3",
"wp-pay-gateways/ems-e-commerce": "^4.4",
"wp-pay-gateways/icepay": "^4.3",
"wp-pay-gateways/ideal": "^4.1",
"wp-pay-gateways/ideal-advanced-v3": "^4.3",
"wp-pay-gateways/ideal-basic": "^4.3",
"wp-pay-gateways/mollie": "^4.12",
"wp-pay-gateways/multisafepay": "^4.5",
"wp-pay-gateways/ogone": "^4.7",
"wp-pay-gateways/omnikassa-2": "^4.7",
"wp-pay-gateways/pay-nl": "^4.5",
"wp-pay-gateways/paypal": "^2.3",
"wp-pay/core": "^4.22",
"wp-pay/fundraising": "^3.2"
},
"require-dev": {
"automattic/wordbless": "^0.3 || ^0.4",
"php-coveralls/php-coveralls": "^2.7",
"php-stubs/wordpress-globals": "^0.2.0",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^1.11",
"pronamic/changelog-md-to-wordpress-plugin-readme-txt": "dev-main",
"pronamic/pronamic-cli": "^1.1",
"pronamic/wp-coding-standards": "^2.2",
"roots/wordpress-no-content": "^6.4",
"vimeo/psalm": "^5.24",
"wp-cli/wp-cli": "dev-main",
"wp-cli/wp-cli-bundle": "dev-main",
"yoast/phpunit-polyfills": "^1.1"
},
"extra": {
"installer-paths": {
"packages/{$vendor}/{$name}": [
"vendor:pronamic",
"vendor:wp-pay",
"vendor:wp-pay-extensions",
"vendor:wp-pay-gateways",
"woocommerce/action-scheduler"
]
}
},
"scripts": {
"build": [
"Pronamic\\ChangelogMdToWordPressPluginReadmeTxt\\Synchronizer::run",
"vendor/bin/pronamic wp-build --text-domain-fixer=phpcs-text-domain-fixer.xml"
],
"translate": [
"@build",
"rsync --recursive --delete --verbose ./build/project/languages/ ./languages/",
"@update-po"
],
"version": [
"@build"
],
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover build/logs/clover.xml --coverage-text",
"coverage-clover": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover build/logs/clover.xml",
"coverage-html": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html build/coverage-html",
"coverage-text": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text",
"coveralls": "vendor/bin/php-coveralls -v",
"phpcbf": "XDEBUG_MODE=off vendor/bin/phpcbf",
"phpcs": "XDEBUG_MODE=off vendor/bin/phpcs -s -v",
"phplint": "find src tests -name '*.php' | xargs -n 1 -P 4 php -l",
"phpmd": "vendor/bin/phpmd src,tests text phpmd.ruleset.xml --suffixes php",
"phpstan": "XDEBUG_MODE=off vendor/bin/phpstan analyse --memory-limit=-1",
"phpunit": "XDEBUG_MODE=off vendor/bin/phpunit --colors=always",
"php-lint-plugin": "find -L . -type f -path ./.git -prune -o -path ./deploy -prune -o -path ./node_modules -prune -o -path ./repositories -prune -o -path ./vendor -prune -o -path ./wordpress -prune -o -path ./wp-content -prune -o -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l -n",
"php-lint-wp-pay": "find -L ./repositories/ -type f -name .git -prune -o -name node_modules -prune -o -name vendor -prune -o -name wordpress -prune -o -name wp-content -prune -o -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l -n",
"post-install-cmd": "test -f wp-content/wordbless/src/dbless-wpdb.php && mkdir -p wordpress/wp-content && cp wp-content/wordbless/src/dbless-wpdb.php wordpress/wp-content/db.php || echo 0",
"post-update-cmd": "test -f wp-content/wordbless/src/dbless-wpdb.php && mkdir -p wordpress/wp-content && cp wp-content/wordbless/src/dbless-wpdb.php wordpress/wp-content/db.php || echo 0",
"psalm": "XDEBUG_MODE=off vendor/bin/psalm",
"update-po": "find languages/*.po -type f -exec msgmerge --update --backup=off {} languages/pronamic-ideal.pot \\;",
"release": [
"Composer\\Config::disableProcessTimeout",
"@build",
"vendor/bin/pronamic release-to-github"
]
}
}