-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
110 lines (110 loc) · 3.07 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/mollie",
"description": "Mollie driver for the WordPress payment processing library.",
"keywords": [
"wordpress",
"wp",
"pay",
"mollie",
"gateway",
"pronamic"
],
"homepage": "http://www.wp-pay.org/gateways/mollie/",
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"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/mollie/issues",
"source": "https://github.com/wp-pay-gateways/mollie"
},
"autoload": {
"psr-4": {
"Pronamic\\WordPress\\Pay\\Gateways\\Mollie\\": "src/"
}
},
"config": {
"platform": {
"php": "8.1"
},
"platform-check": false,
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": true,
"automattic/jetpack-autoloader": true,
"phpstan/extension-installer": true
},
"wp-slug": "pronamic-pay-mollie"
},
"repositories": [
{
"url": "https://github.com/wordpress/sqlite-database-integration.git",
"type": "git"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"automattic/jetpack-autoloader": "^3.0",
"giggsey/libphonenumber-for-php-lite": "^8.13",
"justinrainbow/json-schema": "^5.2",
"pronamic/wp-http": "^1.2",
"pronamic/wp-mollie": "^1.7",
"woocommerce/action-scheduler": "^3.8",
"wp-pay/core": "^4.23"
},
"require-dev": {
"overtrue/phplint": "^9.0",
"php-coveralls/php-coveralls": "^2.5",
"phpmd/phpmd": "^2.7",
"phpmetrics/phpmetrics": "^2.8",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.11",
"pronamic/pronamic-cli": "^1.1",
"pronamic/wp-coding-standards": "^2.1",
"pronamic/wp-documentor": "^1.4",
"roots/wordpress": "^6.5",
"szepeviktor/phpstan-wordpress": "^1.3",
"vimeo/psalm": "^5.24",
"wordpress/sqlite-database-integration": "^2.1",
"wp-cli/wp-cli": "^2.3",
"wp-phpunit/wp-phpunit": "^6.5",
"yoast/phpunit-polyfills": "^2.0"
},
"scripts": {
"ci": [
"@phplint",
"@phpcs",
"@coverage",
"@phpstan"
],
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --colors=always --exclude-group=require-database --coverage-clover build/logs/clover.xml --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": "vendor/bin/phplint",
"phpmd": "vendor/bin/phpmd src,tests text phpmd.ruleset.xml --suffixes php",
"phpmetrics": "vendor/bin/phpmetrics --config=.phpmetrics.json",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=-1",
"phpunit": "vendor/bin/phpunit --colors=always --exclude-group=require-database",
"psalm": "vendor/bin/psalm",
"build-docs": [
"vendor/bin/wp-documentor parse src --format=markdown --relative=docs > docs/hooks.md"
]
}
}