-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 1.82 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
{
"name": "pronamic/pronamic-pay-worldline-open-banking-ideal-2",
"description": "This plugin contains the Pronamic Pay integration for the Worldline Open Banking Platform and iDEAL 2.0.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"keywords": [
"ideal",
"ideal-2",
"ideal-hub",
"msp",
"multi-service-platform",
"open-banking",
"open-banking-platform",
"open-banking-service",
"open-banking-services",
"payment",
"pronamic",
"pronamic-pay",
"rabobank",
"worldline",
"wordpress",
"wordpress-plugin"
],
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true,
"automattic/jetpack-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"bamarni/composer-bin-plugin": true
},
"platform": {
"php": "8.1"
},
"platform-check": false,
"sort-packages": true,
"wp-slug": "pronamic-pay-worldline-open-banking-ideal-2"
},
"autoload": {
"psr-4": {
"Pronamic\\WordPress\\Pay\\Gateways\\WorldlineOpenBanking\\": "src/"
}
},
"require": {
"php": ">=8.1",
"automattic/jetpack-autoloader": "^2.0 || ^3.0",
"pronamic/ideal-issuers": "^1.0",
"pronamic/pronamic-wp-updater": "^1.0",
"pronamic/wp-http": "^1.2",
"wp-pay/core": "^4.16"
},
"require-dev": {
"automattic/wordbless": "^0.4.2",
"bamarni/composer-bin-plugin": "^1.8",
"pronamic/pronamic-cli": "^1.1",
"pronamic/wp-coding-standards": "^2.2"
},
"scripts": {
"phpcs": "vendor/bin/phpcs -s -v",
"build": "vendor/bin/pronamic wp-build",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=-1",
"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"
]
}
}